diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-22 11:07:16 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-22 11:07:16 -0400 |
| commit | f9d40ebad822d9d873e05f0fbe52990dc538179e (patch) | |
| tree | 20b37f53f7909efee3c4d33486232e62ebfd1053 /src/d/d_s_open.cpp | |
| parent | c836c5ca1f14fa629a82e02ea74fb681a7c94e6b (diff) | |
Use NULL macro in asserts, fix NULL macro to match
Diffstat (limited to 'src/d/d_s_open.cpp')
| -rw-r--r-- | src/d/d_s_open.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/d_s_open.cpp b/src/d/d_s_open.cpp index 48c03eba..6f6b70c7 100644 --- a/src/d/d_s_open.cpp +++ b/src/d/d_s_open.cpp @@ -23,7 +23,7 @@ s32 dScnOpen_c::create() { s32 rt = dComIfG_resLoad(&mPhs, "Opening"); if (rt == cPhs_COMPLEATE_e) { solid_heap = mDoExt_createSolidHeapFromGameToCurrent(0x20000, 0); - JUT_ASSERT(0x3b, solid_heap != 0); + JUT_ASSERT(0x3b, solid_heap != NULL); mpProc = new dScnOpen_proc_c(); field_0x1d4 = NULL; mDoExt_restoreCurrentHeap(); |
