summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-06-26 07:50:19 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-06-26 07:50:19 -0400
commit3611266d0ffe20e32912c9070d4d0f7e7b2ebfce (patch)
tree257eb393103f47c65d09fb41ef0c421fe8207368
parent4691152f9219c5ae8d1fce7c7f7840fe709e5040 (diff)
downloadrockbox-3611266d0ffe20e32912c9070d4d0f7e7b2ebfce.tar.gz
rockbox-3611266d0ffe20e32912c9070d4d0f7e7b2ebfce.zip
simulator: fix ipod6g simulator build.
This wasn't caught because the ipod6gsim target was inadvertantly left out of the buildfarm. Change-Id: Id0c250f29a999f8722f8911e061166f0e9c35502
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index c5f79a075f..627d7f7bea 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -2585,7 +2585,7 @@ static bool dbg_boot_data(void)
2585} 2585}
2586#endif /* defined(HAVE_BOOTDATA) && !defined(SIMULATOR) */ 2586#endif /* defined(HAVE_BOOTDATA) && !defined(SIMULATOR) */
2587 2587
2588#if defined(IPOD_6G) 2588#if defined(IPOD_6G) && !defined(SIMULATOR)
2589#define SYSCFG_MAX_ENTRIES 10 // 9 on iPod Classic/6G 2589#define SYSCFG_MAX_ENTRIES 10 // 9 on iPod Classic/6G
2590 2590
2591static bool dbg_syscfg(void) { 2591static bool dbg_syscfg(void) {
@@ -2784,7 +2784,7 @@ static const struct {
2784#if defined(HAVE_BOOTDATA) && !defined(SIMULATOR) 2784#if defined(HAVE_BOOTDATA) && !defined(SIMULATOR)
2785 {"Boot data", dbg_boot_data }, 2785 {"Boot data", dbg_boot_data },
2786#endif 2786#endif
2787#if defined(IPOD_6G) 2787#if defined(IPOD_6G) && !defined(SIMULATOR)
2788 {"View SysCfg", dbg_syscfg }, 2788 {"View SysCfg", dbg_syscfg },
2789#endif 2789#endif
2790}; 2790};