Merge pull request #333 from dbalatoni13/main

Fix the prototype of HuAudStreamPlay
This commit is contained in:
Liam Coleman 2024-06-04 16:51:47 -05:00 committed by GitHub
commit 2b5532efb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ typedef struct hu_snd_grp_data {
} HuSndGrpData;
void HuAudInit(void);
s32 HuAudStreamPlay(void);
s32 HuAudStreamPlay(char *name, s32 arg1);
void HuAudStreamVolSet(s16 vol);
void HuAudStreamPauseOn(void);
void HuAudStreamPauseOff(void);

View file

@ -68,7 +68,7 @@ void HuAudInit(void) {
musicOffF = 0;
}
s32 HuAudStreamPlay(void) {
s32 HuAudStreamPlay(char *name, s32 arg1) {
return 0;
}