From 821f78f2866c21ff8de93e20124c39d4d6043b0d Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Sun, 27 May 2012 16:31:22 +0000 Subject: [PATCH] SDL: fix for OS/2 compile [K.O. Myung-Hun] --- src/osd/sdl/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd/sdl/sound.c b/src/osd/sdl/sound.c index fdc67df1b13..9cac5453930 100644 --- a/src/osd/sdl/sound.c +++ b/src/osd/sdl/sound.c @@ -74,7 +74,7 @@ static void sdl_kill(running_machine &machine); static int sdl_create_buffers(void); static void sdl_destroy_buffers(void); static void sdl_cleanup_audio(running_machine &machine); -static void sdl_callback(void *userdata, Uint8 *stream, int len); +static void SDLCALL sdl_callback(void *userdata, Uint8 *stream, int len);