diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-22 10:10:07 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-22 10:10:07 -0400 |
| commit | c836c5ca1f14fa629a82e02ea74fb681a7c94e6b (patch) | |
| tree | e03be0b3b510ca489814308b81ab6388787abd3f /src/d/actor/d_a_obj_barrier.cpp | |
| parent | d419a25be33193058347290d01eeffbf7ad57715 (diff) | |
Use FALSE macro in asserts, remove JUT_PANIC macro
Diffstat (limited to 'src/d/actor/d_a_obj_barrier.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_barrier.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_obj_barrier.cpp b/src/d/actor/d_a_obj_barrier.cpp index 6753fc3f..4cb976e4 100644 --- a/src/d/actor/d_a_obj_barrier.cpp +++ b/src/d/actor/d_a_obj_barrier.cpp @@ -104,7 +104,7 @@ bool daObjBarrier_anm_c::init() { J3DAnmTevRegKey* pbrk = static_cast<J3DAnmTevRegKey*>(dComIfG_getObjectRes(l_arcname, YCAGE_BRK_YCAGE00)); if (modelData == NULL || pbtk == NULL || pbrk == NULL) { - JUT_PANIC(407); + JUT_ASSERT(407, FALSE); rt = false; } else { mpModel = mDoExt_J3DModel__create(modelData, 0x80000, 0x1000200); @@ -407,7 +407,7 @@ bool daObjBarrier_ef_c::init() { J3DAnmTevRegKey* pbrk = static_cast<J3DAnmTevRegKey*>(dComIfG_getObjectRes(l_arcname, YCAGE_BRK_YHRBR00)); if (modelData == NULL || pbtk == NULL || pbck == NULL || pbrk == NULL) { - JUT_PANIC(1016); + JUT_ASSERT(1016, FALSE); rt = false; } else { for (int i = 0; i < 4; i++) { |
