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
@@ -535,7 +535,7 @@ void wether_move_rain() {
g_env_light.mbRainInitialized = true;
if (g_env_light.mRainCount != 250) {
mDoAud_seStart(JA_SE_ATM_RAIN_START, NULL, 0, 0);
mDoAud_seStart(JA_SE_ATM_RAIN_START);
}
}
break;
@@ -552,7 +552,7 @@ void wether_move_rain() {
if (g_env_light.mRainCount == 0) {
g_env_light.mbRainInitialized = false;
mDoAud_seStart(JA_SE_ATM_RAIN_END, NULL, 0, 0);
mDoAud_seStart(JA_SE_ATM_RAIN_END);
delete g_env_light.mpRainPacket;
}
break;