mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
MP Core Mixer: Old-style function dec fixes (buildbots)
This commit is contained in:
parent
fae377b896
commit
8eb2171fcd
1 changed files with 3 additions and 3 deletions
|
|
@ -506,7 +506,7 @@ static UINT32 get_adjusted_position(UINT32 position)
|
||||||
return position;
|
return position;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void do_fading_callback()
|
static void do_fading_callback(void)
|
||||||
{
|
{
|
||||||
if (fading_callback)
|
if (fading_callback)
|
||||||
(*fading_callback)();
|
(*fading_callback)();
|
||||||
|
|
@ -1170,7 +1170,7 @@ void I_StopSong(void)
|
||||||
var_cleanup();
|
var_cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void I_PauseSong()
|
void I_PauseSong(void)
|
||||||
{
|
{
|
||||||
if(I_SongType() == MU_MID) // really, SDL Mixer? why can't you pause MIDI???
|
if(I_SongType() == MU_MID) // really, SDL Mixer? why can't you pause MIDI???
|
||||||
return;
|
return;
|
||||||
|
|
@ -1182,7 +1182,7 @@ void I_PauseSong()
|
||||||
songpaused = true;
|
songpaused = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void I_ResumeSong()
|
void I_ResumeSong(void)
|
||||||
{
|
{
|
||||||
if (I_SongType() == MU_MID)
|
if (I_SongType() == MU_MID)
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue