Fix pushblock resetting

This commit is contained in:
Waterdish
2024-03-16 11:38:46 -07:00
parent 8216cebf11
commit b63650a2e3
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -398,7 +398,7 @@ s32 CollisionPoly_LineVsPoly(CollisionPoly* poly, Vec3s* vtxList, Vec3f* posA, V
(poly->normal.x * posB->x + poly->normal.y * posB->y + poly->normal.z * posB->z) * COLPOLY_NORMAL_FRAC +
plane.originDist;
#ifdef __WIIU__
#if defined(__WIIU__) || defined(__ANDROID__)
// on some platforms this ends up as very small numbers due to rounding issues
if (IS_ZERO(planeDistA)) {
planeDistA = 0.0f;