diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-06 01:06:22 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-06 01:06:22 +0000 |
| commit | e00062208a9c0a31ce45267a71aa161a862fe64b (patch) | |
| tree | 3d6c753a85c48d00db62a197c23780be024658a9 /apps/debug_menu.c | |
| parent | a29c31543dfa63056ea49e9f93ca6196d83a72c7 (diff) | |
| download | rockbox-e00062208a9c0a31ce45267a71aa161a862fe64b.zip rockbox-e00062208a9c0a31ce45267a71aa161a862fe64b.tar.gz rockbox-e00062208a9c0a31ce45267a71aa161a862fe64b.tar.bz2 rockbox-e00062208a9c0a31ce45267a71aa161a862fe64b.tar.xz | |
Audio thread debug is only for bitmapped LCD
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6586 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 1a6babe..f978bc1 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -354,7 +354,7 @@ bool dbg_os(void) } #endif -#if CONFIG_HWCODEC != MASNONE +#if CONFIG_HWCODEC != MASNONE && defined HAVE_LCD_BITMAP bool dbg_audio_thread(void) { char buf[32]; @@ -2038,7 +2038,7 @@ bool debug_menu(void) #else { "View disk info", dbg_disk_info }, #endif -#if CONFIG_HWCODEC != MASNONE +#if CONFIG_HWCODEC != MASNONE && defined HAVE_LCD_BITMAP { "View audio thread", dbg_audio_thread }, #ifdef PM_DEBUG { "pm histogram", peak_meter_histogram}, |