1
0
Fork 0
forked from len0rd/rockbox

peakmeter is lcd-bitmap only

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2438 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-09-27 10:18:48 +00:00
parent f11702921f
commit f7c3ffa537
2 changed files with 6 additions and 3 deletions

View file

@ -36,7 +36,9 @@
#include "powermgmt.h"
#include "rtc.h"
#include "ata.h"
#ifdef HAVE_LCD_BITMAP
#include "peakmeter.h"
#endif
#include "lang.h"
static bool contrast(void)

View file

@ -527,7 +527,7 @@ bool wps_refresh(struct mp3entry* id3, int ffwd_offset, bool refresh_all)
struct format_flags flags;
bool scroll_active = false;
int i;
#ifdef HAVE_LCD_BITMAP
/* to find out wether the peak meter is enabled we
assume it wasn't until we find a line that contains
the peak meter. We can't use peak_meter_enabled itself
@ -536,7 +536,7 @@ bool wps_refresh(struct mp3entry* id3, int ffwd_offset, bool refresh_all)
or sleep is called but who knows...)
*/
bool enable_pm = false;
#endif
if (!id3)
{
lcd_stop_scroll();
@ -611,10 +611,11 @@ bool wps_refresh(struct mp3entry* id3, int ffwd_offset, bool refresh_all)
}
}
}
#ifdef HAVE_LCD_BITMAP
/* Now we know wether the peak meter is used.
So we can enable / disable the peak meter thread */
peak_meter_enabled = enable_pm;
#endif
lcd_update();
return true;