summaryrefslogtreecommitdiff
path: root/soh/src/code/sys_matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'soh/src/code/sys_matrix.c')
-rw-r--r--soh/src/code/sys_matrix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/soh/src/code/sys_matrix.c b/soh/src/code/sys_matrix.c
index 06e2e881f..c0f326673 100644
--- a/soh/src/code/sys_matrix.c
+++ b/soh/src/code/sys_matrix.c
@@ -1,6 +1,7 @@
#include "global.h"
#include "soh/frame_interpolation.h"
+#include <assert.h>
// clang-format off
Mtx gMtxClear = {
@@ -35,7 +36,7 @@ void Matrix_Push(void) {
void Matrix_Pop(void) {
FrameInterpolation_RecordMatrixPop();
sCurrentMatrix--;
- ASSERT(sCurrentMatrix >= sMatrixStack);
+ assert(sCurrentMatrix >= sMatrixStack);
}
void Matrix_Get(MtxF* dest) {