summaryrefslogtreecommitdiff
path: root/src/code/sys_math3d.c
diff options
context:
space:
mode:
authorRoman971 <32455037+Roman971@users.noreply.github.com>2020-08-23 23:50:30 +0200
committerGitHub <noreply@github.com>2020-08-23 17:50:30 -0400
commit49609dd78bb586c8ab3349105ceedeb2eb0d91ea (patch)
treec076c98bff5e83feb342219344ed027718519acf /src/code/sys_math3d.c
parent281aaa0cb6a55f19eceb322871a8d27da9e0e8b2 (diff)
Match/Improve a bunch of non matchings (#342)
Diffstat (limited to 'src/code/sys_math3d.c')
-rw-r--r--src/code/sys_math3d.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/code/sys_math3d.c b/src/code/sys_math3d.c
index 6016ea1e6..296135b84 100644
--- a/src/code/sys_math3d.c
+++ b/src/code/sys_math3d.c
@@ -47,13 +47,9 @@ s32 Math3D_PlaneVsLineSegClosestPoint(f32 planeAA, f32 planeAB, f32 planeAC, f32
/**
* Creates a line segment which is perpendicular to the line segments `lineAPointA`->`lineAPointB` and
* `lineBPointA`->`lineBPointB`
- *
*/
#ifdef NON_MATCHING
-/**
- * NON_MATCHING:
- * Lots of regalloc, but is functionally equivilent, some reordering.
- */
+// Lots of regalloc, but is functionally equivilent, some reordering.
s32 Math3D_LineSegMakePerpLineSeg(Vec3f* lineAPointA, Vec3f* lineAPointB, Vec3f* lineBPointA, Vec3f* lineBPointB,
Vec3f* lineAIntersect, Vec3f* lineBIntersect) {
f32 sp5C;