From f95c23ef69ed45bffc8610c841bba1ce40a4f88e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= <159546+serprex@users.noreply.github.com> Date: Wed, 24 Jun 2026 19:28:09 +0000 Subject: No FMA (#6811) --- soh/src/code/z_bgcheck.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'soh/src/code') diff --git a/soh/src/code/z_bgcheck.c b/soh/src/code/z_bgcheck.c index f0ad28568..e98e66e44 100644 --- a/soh/src/code/z_bgcheck.c +++ b/soh/src/code/z_bgcheck.c @@ -399,16 +399,6 @@ 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; -#if defined(__SWITCH__) || defined(__WIIU__) - // on some platforms this ends up as very small numbers due to rounding issues - if (IS_ZERO(planeDistA)) { - planeDistA = 0.0f; - } - if (IS_ZERO(planeDistB)) { - planeDistB = 0.0f; - } -#endif - planeDistDelta = planeDistA - planeDistB; if ((planeDistA >= 0.0f && planeDistB >= 0.0f) || (planeDistA < 0.0f && planeDistB < 0.0f) || (chkOneFace && planeDistA < 0.0f && planeDistB > 0.0f) || IS_ZERO(planeDistDelta)) { -- cgit v1.2.3