From 4c90c0858c7c01090ad5fdd9070a9897af22479a Mon Sep 17 00:00:00 2001 From: kabiskac Date: Tue, 4 Jun 2024 23:49:16 +0200 Subject: [PATCH] Fix the prototype of HuAudStreamPlay --- include/game/audio.h | 2 +- src/game/audio.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/game/audio.h b/include/game/audio.h index 7481c410..0aa2d3af 100644 --- a/include/game/audio.h +++ b/include/game/audio.h @@ -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); diff --git a/src/game/audio.c b/src/game/audio.c index 1348bd5b..6d06279b 100644 --- a/src/game/audio.c +++ b/src/game/audio.c @@ -68,7 +68,7 @@ void HuAudInit(void) { musicOffF = 0; } -s32 HuAudStreamPlay(void) { +s32 HuAudStreamPlay(char *name, s32 arg1) { return 0; }