Use NULL instead of 0

This commit is contained in:
LagoLunatic
2024-04-23 14:04:42 -04:00
parent 1e32c0a197
commit 12e1b800ad
16 changed files with 44 additions and 44 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ BOOL daArrow_Iceeff_c::CreateHeap() {
J3DModelData* modelData = static_cast<J3DModelData*>(dComIfG_getObjectRes("Link", LINK_BDL_GICER01));
JUT_ASSERT(98, modelData != 0);
mpModel = mDoExt_J3DModel__create(modelData, 0, 0x11020203);
if(mpModel == 0) {
if(mpModel == NULL) {
return false;
}