1
0
Fork 0
forked from len0rd/rockbox

Fix some incorrectly declared functions in the sim.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9080 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dan Everton 2006-03-17 22:09:34 +00:00
parent 13c63de2c1
commit 5b3e3e1f2a
2 changed files with 3 additions and 3 deletions

View file

@ -51,7 +51,7 @@ static void sdl_dma_start(const void *addr, size_t size)
SDL_PauseAudio(0); SDL_PauseAudio(0);
} }
static void sdl_dma_stop() static void sdl_dma_stop(void)
{ {
pcm_playing = false; pcm_playing = false;

View file

@ -101,7 +101,7 @@ void gui_message_loop(void)
} }
} }
bool gui_startup() bool gui_startup(void)
{ {
SDL_Surface *picture_surface; SDL_Surface *picture_surface;
int width, height; int width, height;
@ -162,7 +162,7 @@ bool gui_startup()
return true; return true;
} }
bool gui_shutdown() bool gui_shutdown(void)
{ {
int i; int i;