Skip to content

Commit 5128dc8

Browse files
authored
Merge pull request #19 from Nefistofeles/main
2 parents dafbb72 + f2f4b2c commit 5128dc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/root.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2619,7 +2619,7 @@ pub fn inverseDet(m: Mat, out_det: ?*F32x4) Mat {
26192619
out_det.?.* = det;
26202620
}
26212621

2622-
if (math.approxEqAbs(f32, det[0], 0.0, math.floatEps(f32))) {
2622+
if (math.approxEqAbs(f64, det[0], 0.0, math.floatEps(f64))) {
26232623
return .{
26242624
f32x4(0.0, 0.0, 0.0, 0.0),
26252625
f32x4(0.0, 0.0, 0.0, 0.0),

0 commit comments

Comments
 (0)