diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-03-17 16:21:46 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-03-17 16:21:46 -0400 |
| commit | b97eeed779b9fb2bfcad07c650b2d4d09e88a9c9 (patch) | |
| tree | e8127b28a6aee42a5f260dbd9c0c387659a0781d /src/d/actor/d_a_npc_kamome.cpp | |
| parent | 90a8e2db65ad09fe48a03f504302e8dc1f9c77c6 (diff) | |
Rename J3DFrameCtrl loop mode enum
See https://github.com/zeldaret/tp/pull/2327/commits/2a284165cf35a2324d36d825add5c06ffa864398
Diffstat (limited to 'src/d/actor/d_a_npc_kamome.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_kamome.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d/actor/d_a_npc_kamome.cpp b/src/d/actor/d_a_npc_kamome.cpp index a15b6877..5d477b60 100644 --- a/src/d/actor/d_a_npc_kamome.cpp +++ b/src/d/actor/d_a_npc_kamome.cpp @@ -219,7 +219,7 @@ BOOL daNpc_kam_c::createHeap() { modelData, NULL, NULL, (J3DAnmTransformKey*)dComIfG_getObjectRes("Kamome", KAMOME_BCK_KA_WAIT1), - J3DFrameCtrl::LOOP_REPEAT_e, 1.0f, 0, -1, 1, + J3DFrameCtrl::EMode_LOOP, 1.0f, 0, -1, 1, NULL, 0x00080000, 0x11000002 @@ -1118,21 +1118,21 @@ void daNpc_kam_c::setAnm(int anmIdx) { static anmPrm_c l_anmPrm[] = { { /* mAnmTblIdx */ 0, - /* mLoopMode */ J3DFrameCtrl::LOOP_REPEAT_e, + /* mLoopMode */ J3DFrameCtrl::EMode_LOOP, /* mMorf */ 8.0f, /* mPlaySpeed */ 1.0f, /* m10 */ 0, }, { /* mAnmTblIdx */ 1, - /* mLoopMode */ J3DFrameCtrl::LOOP_REPEAT_e, + /* mLoopMode */ J3DFrameCtrl::EMode_LOOP, /* mMorf */ 8.0f, /* mPlaySpeed */ 1.0f, /* m10 */ 0, }, { /* mAnmTblIdx */ 2, - /* mLoopMode */ J3DFrameCtrl::LOOP_ONCE_e, + /* mLoopMode */ J3DFrameCtrl::EMode_NONE, /* mMorf */ 8.0f, /* mPlaySpeed */ 1.0f, /* m10 */ 0, |
