From 3611266d0ffe20e32912c9070d4d0f7e7b2ebfce Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Wed, 26 Jun 2024 07:50:19 -0400 Subject: simulator: fix ipod6g simulator build. This wasn't caught because the ipod6gsim target was inadvertantly left out of the buildfarm. Change-Id: Id0c250f29a999f8722f8911e061166f0e9c35502 --- apps/debug_menu.c | 4 ++-- 1 file 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) } #endif /* defined(HAVE_BOOTDATA) && !defined(SIMULATOR) */ -#if defined(IPOD_6G) +#if defined(IPOD_6G) && !defined(SIMULATOR) #define SYSCFG_MAX_ENTRIES 10 // 9 on iPod Classic/6G static bool dbg_syscfg(void) { @@ -2784,7 +2784,7 @@ static const struct { #if defined(HAVE_BOOTDATA) && !defined(SIMULATOR) {"Boot data", dbg_boot_data }, #endif -#if defined(IPOD_6G) +#if defined(IPOD_6G) && !defined(SIMULATOR) {"View SysCfg", dbg_syscfg }, #endif }; -- cgit v1.2.3