summaryrefslogtreecommitdiff
path: root/src/common/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/math.c')
-rw-r--r--src/common/math.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/math.c b/src/common/math.c
index 4c01d54..57e63ba 100644
--- a/src/common/math.c
+++ b/src/common/math.c
@@ -260,7 +260,6 @@ BoxOnPlaneSide
Returns 1, 2, or 1 + 2
==================
*/
-#if !USE_ASM
int BoxOnPlaneSide(vec3_t emins, vec3_t emaxs, cplane_t *p)
{
vec_t *bounds[2] = { emins, emaxs };
@@ -286,6 +285,3 @@ int BoxOnPlaneSide(vec3_t emins, vec3_t emaxs, cplane_t *p)
return sides;
}
-#endif // USE_ASM
-
-