mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix NOMIXER compiling
This commit is contained in:
parent
cdadd86780
commit
4f8775d560
1 changed files with 4 additions and 0 deletions
|
|
@ -1432,6 +1432,8 @@ static void I_ResumeGME(void)
|
||||||
|
|
||||||
boolean I_LoadSong(char *data, size_t len)
|
boolean I_LoadSong(char *data, size_t len)
|
||||||
{
|
{
|
||||||
|
(void)data;
|
||||||
|
(void)len;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1493,6 +1495,7 @@ boolean I_FadeSongFromVolume(UINT8 target_volume, UINT8 source_volume, UINT32 ms
|
||||||
(void)target_volume;
|
(void)target_volume;
|
||||||
(void)source_volume;
|
(void)source_volume;
|
||||||
(void)ms;
|
(void)ms;
|
||||||
|
(void)callback;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1500,6 +1503,7 @@ boolean I_FadeSong(UINT8 target_volume, UINT32 ms, void (*callback)(void))
|
||||||
{
|
{
|
||||||
(void)target_volume;
|
(void)target_volume;
|
||||||
(void)ms;
|
(void)ms;
|
||||||
|
(void)callback;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue