[SDL] fixed undefined parameter type

This might have worked with c89, but now it just causes an error
This commit is contained in:
Clownacy 2016-10-14 11:14:22 +01:00
parent 17630b4cb3
commit 9da307e1eb

View File

@ -101,7 +101,7 @@ static int sdl_sound_init()
return 1;
}
static void sdl_sound_update(enabled)
static void sdl_sound_update(int enabled)
{
int size = audio_update(soundframe) * 2;