diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-31 22:11:01 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-31 22:11:01 -0400 |
| commit | 207f6e911f4a5074dc0fb72315d889b57a9c97f6 (patch) | |
| tree | be6f99ede8bd375caf734d7aec18304c9de07d5e /src/d/actor/d_a_kantera.cpp | |
| parent | 85c97022df04e351477f759fef3a9bd49710b5c8 (diff) | |
Add default arguments to anm init functions to simplify calls
Diffstat (limited to 'src/d/actor/d_a_kantera.cpp')
| -rw-r--r-- | src/d/actor/d_a_kantera.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_kantera.cpp b/src/d/actor/d_a_kantera.cpp index 6942b0fb..1640a00e 100644 --- a/src/d/actor/d_a_kantera.cpp +++ b/src/d/actor/d_a_kantera.cpp @@ -303,7 +303,7 @@ static BOOL daKantera_CreateHeap(fopAc_ac_c* a_this) { return FALSE; } - if (!i_this->mpBrkAnm1->init(modelData, anm_res_brk, true, J3DFrameCtrl::EMode_LOOP, 1.0f, 0, -1, false, FALSE)) { + if (!i_this->mpBrkAnm1->init(modelData, anm_res_brk, true, J3DFrameCtrl::EMode_LOOP)) { return FALSE; } @@ -323,7 +323,7 @@ static BOOL daKantera_CreateHeap(fopAc_ac_c* a_this) { return FALSE; } - if (!i_this->mpBrkAnm2->init(modelData, anm_res_brk, true, J3DFrameCtrl::EMode_LOOP, 1.0f, 0, -1, false, FALSE)) { + if (!i_this->mpBrkAnm2->init(modelData, anm_res_brk, true, J3DFrameCtrl::EMode_LOOP)) { return FALSE; } |
