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/actor/d_a_bita.cpp | |
| parent | c836c5ca1f14fa629a82e02ea74fb681a7c94e6b (diff) | |
Use NULL macro in asserts, fix NULL macro to match
Diffstat (limited to 'src/d/actor/d_a_bita.cpp')
| -rw-r--r-- | src/d/actor/d_a_bita.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_bita.cpp b/src/d/actor/d_a_bita.cpp index 9ee9e8a7..f8b5f46d 100644 --- a/src/d/actor/d_a_bita.cpp +++ b/src/d/actor/d_a_bita.cpp @@ -186,14 +186,14 @@ static BOOL useHeapInit(fopAc_ac_c* i_ac) { type = 1; J3DModelData* modelData = (J3DModelData*)dComIfG_getObjectRes("Bita", ita_bmd[type]); - JUT_ASSERT(0x23b, modelData != 0); + JUT_ASSERT(0x23b, modelData != NULL); J3DModel* model = mDoExt_J3DModel__create(modelData, 0, 0x11020203); if (model == NULL) return FALSE; i_this->mpModel = model; modelData = (J3DModelData*)dComIfG_getObjectRes("Bita", ita_Ef_bmd[type]); - JUT_ASSERT(0x247, modelData != 0); + JUT_ASSERT(0x247, modelData != NULL); model = mDoExt_J3DModel__create(modelData, 0, 0x11020203); if (model == NULL) return FALSE; |
