add default params to a lot more functions

This commit is contained in:
LagoLunatic
2023-12-08 16:25:12 -05:00
parent 009b4fb35e
commit a3170e5d69
59 changed files with 241 additions and 248 deletions
+2 -2
View File
@@ -15,11 +15,11 @@ BOOL dLevelSe_Execute(dLevelSe_c* i_this) {
if (i_this->mFlag & 0x08) {
} else if (i_this->mFlag & 0x01) {
mDoAud_seStart(soundId, &i_this->mPos, i_this->field_0xf8, 0);
mDoAud_seStart(soundId, &i_this->mPos, i_this->field_0xf8);
} else if (i_this->mFlag & 0x04) {
mDoAud_seStart(soundId, &i_this->mPos, i_this->field_0xf8, i_this->mReverb);
} else {
mDoAud_seStart(soundId, &i_this->mPos, 0, 0);
mDoAud_seStart(soundId, &i_this->mPos);
}
return TRUE;