diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-12-27 17:03:26 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-12-27 21:32:04 -0500 |
| commit | 48dcebd9e88e9b592572ed906c505ee71df6f4f2 (patch) | |
| tree | 2153980fcdbf41886c95cd757aee2c612a13d80c /src/f_op | |
| parent | 47ce38557bea9d6679e696bba5effe3cd98964b1 (diff) | |
Misc cleanup
Diffstat (limited to 'src/f_op')
| -rw-r--r-- | src/f_op/f_op_actor_mng.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/f_op/f_op_actor_mng.cpp b/src/f_op/f_op_actor_mng.cpp index f45a659e..623d80ff 100644 --- a/src/f_op/f_op_actor_mng.cpp +++ b/src/f_op/f_op_actor_mng.cpp @@ -276,9 +276,9 @@ s32 fopAcM_createHeap(fopAc_ac_c* i_this, u32 size, u32 align) { align = 0x20; i_this->heap = mDoExt_createSolidHeapFromGameToCurrent(size, align); - if (i_this->heap == 0) { + if (i_this->heap == NULL) { OSReport_Error("fopAcM_createHeap 確保失敗\n"); - JUT_CONFIRM(0x34c, i_this->heap != 0); + JUT_CONFIRM(0x34c, i_this->heap != NULL); return FALSE; } |
