cleanup arg names in f_pc_manager (#673)

This commit is contained in:
fig02
2024-08-08 14:38:53 -04:00
committed by GitHub
parent d287e79ab0
commit 864847dfd9
2 changed files with 34 additions and 34 deletions
+5 -5
View File
@@ -337,11 +337,11 @@ static s32 daKt_Create(fopAc_ac_c* i_ac) {
i_this->current.pos.y = REG0_F(0) * 10.0f + 2500.0f;
fopAcM_SetParam(i_this, 1000);
for (s32 i = 0; i < num; i++) {
fopAcM_prm_class* appen = fopAcM_CreateAppend();
appen->mPos = i_this->current.pos;
appen->mAngle.set(0, 0, 0);
appen->mParameter = 1001 + i;
fpcM_Create(PROC_KT, NULL, appen);
fopAcM_prm_class* params = fopAcM_CreateAppend();
params->mPos = i_this->current.pos;
params->mAngle.set(0, 0, 0);
params->mParameter = 1001 + i;
fpcM_Create(PROC_KT, NULL, params);
}
}