Use NULL macro in asserts, fix NULL macro to match

This commit is contained in:
LagoLunatic
2024-06-22 11:07:16 -04:00
parent c836c5ca1f
commit f9d40ebad8
159 changed files with 462 additions and 462 deletions
+1 -1
View File
@@ -344,7 +344,7 @@ s32 daBg_c::create() {
JKRExpHeap * roomHeap = dStage_roomControl_c::getMemoryBlock(roomNo);
if (roomHeap != NULL) {
heap = JKRSolidHeap::create(-1, roomHeap, false);
JUT_ASSERT(0x2fd, heap != 0);
JUT_ASSERT(0x2fd, heap != NULL);
JKRHeap * oldHeap = mDoExt_setCurrentHeap(heap);
s32 rt = createHeap();
JUT_ASSERT(0x302, rt == 1);