Improve audio types

This commit is contained in:
gamemasterplc 2024-11-04 22:17:14 -06:00
parent 44107236ed
commit 4a4967d4a3
11 changed files with 430 additions and 298 deletions

View file

@ -2196,10 +2196,10 @@ void fn_1_79FC(Mtx arg0, Mtx arg1)
arg1[2][3] = 0;
}
s32 fn_1_7A78(s32 arg0, s16 arg1)
s32 fn_1_7A78(s32 arg0, s16 vol)
{
UnkMsmStruct_01 sp10;
sp10.unk00 = 1;
sp10.unk04 = arg1;
return msmSeSetParam(arg0, &sp10);
MSM_SEPARAM seParam;
seParam.flag = MSM_SEPARAM_VOL;
seParam.vol = vol;
return msmSeSetParam(arg0, &seParam);
}