diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-01-08 15:49:00 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-01-08 15:49:00 -0500 |
| commit | 417ef8cacb01d7d0163444cec768dfcc091eb2cb (patch) | |
| tree | e67ed86696844063ca006efcdb4703189675f13c /src/d/actor/d_a_obj_quake.cpp | |
| parent | f74fd75332f1cd4af5e7223863815fec09a386ac (diff) | |
Fix mDoHIO inlines
Diffstat (limited to 'src/d/actor/d_a_obj_quake.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_quake.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_obj_quake.cpp b/src/d/actor/d_a_obj_quake.cpp index d1b14e19..75e7e57d 100644 --- a/src/d/actor/d_a_obj_quake.cpp +++ b/src/d/actor/d_a_obj_quake.cpp @@ -51,7 +51,7 @@ s32 daObjQuake_c::_create() { } if (l_HIO.mChildID < 0) { - l_HIO.mChildID = mDoHIO_root.mDoHIO_createChild("振動効果", &l_HIO); // "Vibration Effect" + l_HIO.mChildID = mDoHIO_createChild("振動効果", &l_HIO); // "Vibration Effect" } l_HIO.field_0x08 += 1; @@ -82,7 +82,7 @@ BOOL daObjQuake_c::_is_delete() { if (l_HIO.mChildID >= 0) { l_HIO.field_0x08 -= 1; if (l_HIO.field_0x08 == 0) { - mDoHIO_root.mDoHIO_deleteChild(l_HIO.mChildID); + mDoHIO_deleteChild(l_HIO.mChildID); l_HIO.mChildID = -1; } } |
