summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2025-06-07 18:12:30 -0600
committerGitHub <noreply@github.com>2025-06-07 18:12:30 -0600
commit414ad9bf3abfbe6e72afbe9e3056257e67a1a4b3 (patch)
treef0617a85f20b6d331f92ec6f01f718c616078306 /src
parent47e4dd58c0e590f3768eeb2bbcf5c9577da7cd95 (diff)
Update gbiMacro.c
Diffstat (limited to 'src')
-rw-r--r--src/gbiMacro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gbiMacro.c b/src/gbiMacro.c
index 007d7d281..7e33bbc8f 100644
--- a/src/gbiMacro.c
+++ b/src/gbiMacro.c
@@ -3,6 +3,7 @@
#include "main.h"
#include <mk64.h>
#include <assets/common_data.h>
+#include "src/port/interpolation/matrix.h"
#include "math_util.h"
@@ -18,5 +19,5 @@ UNUSED void gfx_func_80040D00(void) {
guOrtho(&gGfxPool->mtxScreen, 0.0f, SCREEN_WIDTH, 0.0f, SCREEN_HEIGHT, -1.0f, 1.0f, 1.0f);
gSPPerspNormalize(gDisplayListHead++, 0xFFFF);
gSPMatrix(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(gGfxPool), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION);
- //gSPMatrix(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(&gIdentityMatrix), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW);
+ gSPMatrix(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(&gIdentityMatrix), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW);
}