diff options
author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-05-14 21:14:06 +0000 |
---|---|---|
committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-05-14 21:14:06 +0000 |
commit | 02883e02e28369dbfaa6a90c3afc003a6df8ac64 (patch) | |
tree | 7bdf20b218461c2c486a727936491de13a38e512 /apps/debug_menu.c | |
parent | 67ad705cd9482f5378df57718a639c2b0b624e80 (diff) |
Make ZVM30GB simulator work.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17513 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 740860865f..e198bfa18d 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -2426,7 +2426,7 @@ static bool dbg_isp1583(void) } #endif -#ifdef CREATIVE_ZVx +#if defined(CREATIVE_ZVx) && !defined(SIMULATOR) extern int pic_dbg_num_items(void); extern char* pic_dbg_item(int selected_item, void *data, char *buffer, size_t buffer_len); @@ -2527,7 +2527,7 @@ static const struct the_menu_item menuitems[] = { #if CONFIG_USBOTG == USBOTG_ISP1583 { "View ISP1583 info", dbg_isp1583 }, #endif -#ifdef CREATIVE_ZVx +#if defined(CREATIVE_ZVx) && !defined(SIMULATOR) { "View PIC info", dbg_pic }, #endif #ifdef ROCKBOX_HAS_LOGF |