diff options
| author | Lywx <kiritodev01@gmail.com> | 2025-05-15 22:12:56 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-15 22:12:56 -0600 |
| commit | 27a421bbab2f40cf581dba5a75ca7a8a32d5f011 (patch) | |
| tree | ef1a3dafddec9a160cb212ddb1d27fb7b834c82a /src | |
| parent | 26ec8eebfe1c47bec69acc17daad6df14efd5e66 (diff) | |
Fixed macos
Diffstat (limited to 'src')
| -rw-r--r-- | src/engine/editor/EditorMath.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/editor/EditorMath.cpp b/src/engine/editor/EditorMath.cpp index 44923e08e..92d7d2a38 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++) { |
