diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-03-26 17:09:32 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-03-26 17:09:32 +0000 |
| commit | d9ef5980df35fa4c7dc60fddf781cd71463c9746 (patch) | |
| tree | cd052a0abba27b6414b432d7455eaedfbe9489fa /apps/debug_menu.c | |
| parent | e859e164205eed8ddb33fce6df3c3f722a6ccc31 (diff) | |
| download | rockbox-d9ef5980df35fa4c7dc60fddf781cd71463c9746.zip rockbox-d9ef5980df35fa4c7dc60fddf781cd71463c9746.tar.gz rockbox-d9ef5980df35fa4c7dc60fddf781cd71463c9746.tar.bz2 rockbox-d9ef5980df35fa4c7dc60fddf781cd71463c9746.tar.xz | |
Fixed the debug menu.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9262 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index c62f65e..008e0a2 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1877,6 +1877,7 @@ static bool dbg_dircache_info(void) #endif /* HAVE_DIRCACHE */ +#ifdef HAVE_LCD_BITMAP static bool dbg_tagcache_info(void) { bool done = false; @@ -1908,6 +1909,7 @@ static bool dbg_tagcache_info(void) return false; } +#endif #if CONFIG_CPU == SH7034 bool dbg_save_roms(void) @@ -2052,8 +2054,8 @@ bool debug_menu(void) #ifdef HAVE_DIRCACHE { "View dircache info", dbg_dircache_info }, #endif - { "View tagcache info", dbg_tagcache_info }, #ifdef HAVE_LCD_BITMAP + { "View tagcache info", dbg_tagcache_info }, { "View audio thread", dbg_audio_thread }, #ifdef PM_DEBUG { "pm histogram", peak_meter_histogram}, |