diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-05-10 01:04:38 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-05-10 01:04:38 -0400 |
| commit | 2870b39dd3ef58538e8df5de119cec3c4180545a (patch) | |
| tree | b8bad30f656768f91b01b4194d2d1e9ae4d9e8fd /src/d/actor/d_a_arrow_lighteff.cpp | |
| parent | 91891dc313f5dec25366601301c76a54c64b9553 (diff) | |
use loopmode enum in more places
Diffstat (limited to 'src/d/actor/d_a_arrow_lighteff.cpp')
| -rw-r--r-- | src/d/actor/d_a_arrow_lighteff.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_arrow_lighteff.cpp b/src/d/actor/d_a_arrow_lighteff.cpp index 10599309..5dfb4dc0 100644 --- a/src/d/actor/d_a_arrow_lighteff.cpp +++ b/src/d/actor/d_a_arrow_lighteff.cpp @@ -114,10 +114,10 @@ BOOL daArrow_Lighteff_c::CreateHeap() { JUT_ASSERT(216, btk != 0); JUT_ASSERT(217, brk != 0); - if(!mBtk.init(modelData, btk, true, 2, 1.0f, 0, -1, false, 0)) { + if(!mBtk.init(modelData, btk, true, J3DFrameCtrl::LOOP_REPEAT_e, 1.0f, 0, -1, false, 0)) { return false; } - if(!mBrk.init(modelData, brk, true, 0, 1.0f, 0, -1, false, 0)) { + if(!mBrk.init(modelData, brk, true, J3DFrameCtrl::LOOP_ONCE_e, 1.0f, 0, -1, false, 0)) { return false; } |
