summaryrefslogtreecommitdiff
path: root/src/engine/editor/EditorMath.cpp
diff options
context:
space:
mode:
authorMegaMech <7255464+MegaMech@users.noreply.github.com>2025-05-23 16:50:26 -0600
committerMegaMech <7255464+MegaMech@users.noreply.github.com>2025-05-23 16:50:26 -0600
commit25b68921ad4cece662b2d20885103d8cc998dac5 (patch)
treebff02190a71052cfc9897444b3e3e0fc19e20718 /src/engine/editor/EditorMath.cpp
parentc4721b2df546b77773e184c8c2ce3b3d83b17542 (diff)
parentc2ddd2c25626b2797b9f730d77118f0e96131108 (diff)
Merge branch 'transformsharedfromptr' of https://github.com/HarbourMasters/SpaghettiKart into transformsharedfromptr
Diffstat (limited to 'src/engine/editor/EditorMath.cpp')
-rw-r--r--src/engine/editor/EditorMath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/editor/EditorMath.cpp b/src/engine/editor/EditorMath.cpp
index 04a299563..f3833008b 100644
--- a/src/engine/editor/EditorMath.cpp
+++ b/src/engine/editor/EditorMath.cpp
@@ -352,8 +352,8 @@ bool IntersectRaySphere(const Ray& ray, const FVector& sphereCenter, float radiu
// Transform a matrix to a matrix identity
void Editor_MatrixIdentity(Mat4 mtx) {
- register s32 i;
- register s32 k;
+ s32 i;
+ s32 k;
for (i = 0; i < 4; i++) {
for (k = 0; k < 4; k++) {