diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2017-09-16 23:29:50 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2017-09-17 00:03:45 +0200 |
| commit | a0fca0c7bf3bd1c121667a1e66614646a6b96752 (patch) | |
| tree | e5e53563357dd75a057531cad5f293f99c26fa57 /apps/debug_menu.c | |
| parent | ac57f96838b53e574477d13bf41bc54711a70c21 (diff) | |
| download | rockbox-a0fca0c7bf3bd1c121667a1e66614646a6b96752.zip rockbox-a0fca0c7bf3bd1c121667a1e66614646a6b96752.tar.gz rockbox-a0fca0c7bf3bd1c121667a1e66614646a6b96752.tar.bz2 rockbox-a0fca0c7bf3bd1c121667a1e66614646a6b96752.tar.xz | |
Add simulator support for the A860
This requires a few changes unrelated to the A860 because configure unsets
APPLICATION but the NWZ is an application!
Change-Id: Id91aa23193383ac95886b281653da5286edd9caf
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 55454e0..5224dbe 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -2594,7 +2594,7 @@ static const struct { #endif { "Skin Engine RAM usage", dbg_skin_engine }, #endif -#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(SONY_NWZ_LINUX) +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || (defined(SONY_NWZ_LINUX) && !defined(SIMULATOR)) { "View HW info", dbg_hw_info }, #endif #if (CONFIG_PLATFORM & PLATFORM_NATIVE) |