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_bmd.cpp | |
| parent | 85c97022df04e351477f759fef3a9bd49710b5c8 (diff) | |
Add default arguments to anm init functions to simplify calls
Diffstat (limited to 'src/d/actor/d_a_bmd.cpp')
| -rw-r--r-- | src/d/actor/d_a_bmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_bmd.cpp b/src/d/actor/d_a_bmd.cpp index 4dd6a6a1..d9c5878e 100644 --- a/src/d/actor/d_a_bmd.cpp +++ b/src/d/actor/d_a_bmd.cpp @@ -1726,7 +1726,7 @@ BOOL useHeapInit(bmd_class* i_this) { return FALSE; } pJVar5 = (J3DAnmTevRegKey*)dComIfG_getObjectRes("Bmd", BMD_BRK_BKM); - iVar6 = i_this->mpBrkAnm->init(pJVar13->getModelData(), pJVar5, true, J3DFrameCtrl::EMode_NONE, 1.0f, 0, -1, false, 0); + iVar6 = i_this->mpBrkAnm->init(pJVar13->getModelData(), pJVar5, true, J3DFrameCtrl::EMode_NONE); if (iVar6 == 0) { return FALSE; } @@ -1735,7 +1735,7 @@ BOOL useHeapInit(bmd_class* i_this) { return FALSE; } pAnm = (J3DAnmTextureSRTKey*)dComIfG_getObjectRes("Bmd", BMD_BTK_BKM); - iVar6 = i_this->mpBtkAnm->init(pJVar13->getModelData(), pAnm, true, J3DFrameCtrl::EMode_NONE, 1.0f, 0, -1, false, 0); + iVar6 = i_this->mpBtkAnm->init(pJVar13->getModelData(), pAnm, true, J3DFrameCtrl::EMode_NONE); if (iVar6 == 0) { return FALSE; } |
