diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-05 05:01:38 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-05 05:01:38 +0000 |
commit | d88db1fc12ef3aeaf7539c90ff1ea65646e7315f (patch) | |
tree | 8d2339fe8ebf7183958c29a039b007190ff72c76 /apps/debug_menu.c | |
parent | cd41bfa52e4a9775bb53695238734eb7b1671926 (diff) |
Fix sim warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13030 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r-- | apps/debug_menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 9d2866fcf3..10df252468 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -87,6 +87,7 @@ #include "ds2411.h" #endif +#ifndef SIMULATOR static bool dbg_list(char *title, int count, int selection_size, int (*action_callback)(int btn, struct gui_synclist *lists), 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(); return false; } - +#endif /* SIMULATOR */ /*---------------------------------------------------*/ /* SPECIAL DEBUG STUFF */ /*---------------------------------------------------*/ |