summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-03-28 12:07:30 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-03-28 12:08:31 -0400
commit058a9ec9453fed05872d10c72913bbc7034d32d8 (patch)
tree38557eecf09fa2056783e00206ce91a8972b08c9 /apps
parentafd8361d080e892829aacae196b9a8ced3a16894 (diff)
downloadrockbox-058a9ec9453fed05872d10c72913bbc7034d32d8.tar.gz
rockbox-058a9ec9453fed05872d10c72913bbc7034d32d8.zip
Add M3K native to the simulator
Change-Id: If3e877d2df189e44076631fd571cf6aa70ce6ca8
Diffstat (limited to 'apps')
-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 f7e179b040..42d16a4e82 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -2495,7 +2495,7 @@ static bool dbg_boot_data(void)
2495} 2495}
2496#endif /* defined(HAVE_BOOTDATA) && !defined(SIMULATOR) */ 2496#endif /* defined(HAVE_BOOTDATA) && !defined(SIMULATOR) */
2497 2497
2498#ifdef FIIO_M3K 2498#if defined(FIIO_M3K) && !defined(SIMULATOR)
2499/* Note: this is temporary and should NOT be merged, ensure it is removed */ 2499/* Note: this is temporary and should NOT be merged, ensure it is removed */
2500static int fiio_debug_menu_action_callback(int action, struct gui_synclist *lists) 2500static int fiio_debug_menu_action_callback(int action, struct gui_synclist *lists)
2501{ 2501{
@@ -2648,7 +2648,7 @@ static const struct {
2648#if defined(HAVE_BOOTDATA) && !defined(SIMULATOR) 2648#if defined(HAVE_BOOTDATA) && !defined(SIMULATOR)
2649 {"Boot data", dbg_boot_data }, 2649 {"Boot data", dbg_boot_data },
2650#endif 2650#endif
2651#ifdef FIIO_M3K 2651#if defined(FIIO_M3K) && !defined(SIMULATOR)
2652 {"FiiO debug menu", dbg_fiio_menu}, 2652 {"FiiO debug menu", dbg_fiio_menu},
2653#endif 2653#endif
2654}; 2654};