Add default arguments to anm init functions to simplify calls

This commit is contained in:
LagoLunatic
2026-03-31 22:11:01 -04:00
parent 85c97022df
commit 207f6e911f
95 changed files with 223 additions and 220 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ void dMat_backup_c::restore() {
/* 8006F69C-8006F740 .text create__10dMat_ice_cFP16J3DMaterialTableP19J3DAnmTextureSRTKey */
void dMat_ice_c::create(J3DMaterialTable* param_1, J3DAnmTextureSRTKey* param_2) {
mMaterialTable = param_1;
int rt = mBtkAnm.init(mMaterialTable, param_2, TRUE, J3DFrameCtrl::EMode_LOOP, 1.0f, 0, -1, false, 0);
int rt = mBtkAnm.init(mMaterialTable, param_2, TRUE, J3DFrameCtrl::EMode_LOOP);
JUT_ASSERT(98, rt != FALSE);
mBtkAnm.entry(mMaterialTable);
}