mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
simulator: fix ipod6g simulator build.
This wasn't caught because the ipod6gsim target was inadvertantly left out of the buildfarm. Change-Id: Id0c250f29a999f8722f8911e061166f0e9c35502
This commit is contained in:
parent
4691152f92
commit
3611266d0f
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue