1
0
Fork 0
forked from len0rd/rockbox

Fixed the debug menu.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9262 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2006-03-26 17:09:32 +00:00
parent e859e16420
commit d9ef5980df

View file

@ -1877,6 +1877,7 @@ static bool dbg_dircache_info(void)
#endif /* HAVE_DIRCACHE */ #endif /* HAVE_DIRCACHE */
#ifdef HAVE_LCD_BITMAP
static bool dbg_tagcache_info(void) static bool dbg_tagcache_info(void)
{ {
bool done = false; bool done = false;
@ -1908,6 +1909,7 @@ static bool dbg_tagcache_info(void)
return false; return false;
} }
#endif
#if CONFIG_CPU == SH7034 #if CONFIG_CPU == SH7034
bool dbg_save_roms(void) bool dbg_save_roms(void)
@ -2052,8 +2054,8 @@ bool debug_menu(void)
#ifdef HAVE_DIRCACHE #ifdef HAVE_DIRCACHE
{ "View dircache info", dbg_dircache_info }, { "View dircache info", dbg_dircache_info },
#endif #endif
{ "View tagcache info", dbg_tagcache_info },
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
{ "View tagcache info", dbg_tagcache_info },
{ "View audio thread", dbg_audio_thread }, { "View audio thread", dbg_audio_thread },
#ifdef PM_DEBUG #ifdef PM_DEBUG
{ "pm histogram", peak_meter_histogram}, { "pm histogram", peak_meter_histogram},