From f9d40ebad822d9d873e05f0fbe52990dc538179e Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Sat, 22 Jun 2024 11:07:16 -0400 Subject: Use NULL macro in asserts, fix NULL macro to match --- src/d/actor/d_a_bita.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/d/actor/d_a_bita.cpp') 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; -- cgit v1.2.3