mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-22 08:08:53 -05:00
Fix cylinder-tri intersection for GCC due to FLT_EVAL_METHOD (#157)
This commit is contained in:
parent
1aa08caade
commit
1dcd24e7e2
@ -1857,7 +1857,7 @@ s32 Math3D_CylTriVsIntersect(Cylinder16* cyl, TriNorm* tri, Vec3f* intersect) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (minDistSq != 1.e38f) {
|
if (minDistSq != (f32)1.e38f) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user