1
0
Fork 0
forked from len0rd/rockbox

Fix sim warning

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13030 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-04-05 05:01:38 +00:00
parent cd41bfa52e
commit d88db1fc12

View file

@ -87,6 +87,7 @@
#include "ds2411.h" #include "ds2411.h"
#endif #endif
#ifndef SIMULATOR
static bool dbg_list(char *title, int count, int selection_size, static bool dbg_list(char *title, int count, int selection_size,
int (*action_callback)(int btn, struct gui_synclist *lists), int (*action_callback)(int btn, struct gui_synclist *lists),
char* (*dbg_getname)(int item, void * data, char *buffer)) char* (*dbg_getname)(int item, void * data, char *buffer))
@ -116,7 +117,7 @@ static bool dbg_list(char *title, int count, int selection_size,
action_signalscreenchange(); action_signalscreenchange();
return false; return false;
} }
#endif /* SIMULATOR */
/*---------------------------------------------------*/ /*---------------------------------------------------*/
/* SPECIAL DEBUG STUFF */ /* SPECIAL DEBUG STUFF */
/*---------------------------------------------------*/ /*---------------------------------------------------*/