This commit is contained in:
robojumper
2024-05-06 00:21:45 +02:00
parent defdaca00d
commit 0b2695b30a
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -419,6 +419,7 @@ egg/math/eggVector.cpp:
egg/prim/eggAssert.cpp:
.text start:0x8049BF90 end:0x8049C5BC
.data start:0x8056EC88 end:0x8056ED00
.sdata start:0x80574EF0 end:0x80574F18
.sbss start:0x805767F8 end:0x80576808
.bss start:0x80674C60 end:0x80674D68
+2 -2
View File
@@ -115,9 +115,9 @@ bool sAssertOccurred;
}
const char *sym = getMapSymbol((void *)stack[1]);
if (sym != nullptr) {
system_report("%d: %s", num, sym);
system_report("%d: %s\n", num, sym);
} else {
system_report("%d: %p", num, stack[1]);
system_report("%d: %p\n", num, stack[1]);
}
stack = (u32*)stack[0];
if (isOutsideMEM1((u32)stack)) {