1
0
Fork 0
forked from len0rd/rockbox

Fixed time display in statusbar.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2087 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Markus Braun 2002-08-30 19:44:58 +00:00
parent 5bade50b6a
commit 4e4dfc0848
3 changed files with 13 additions and 15 deletions

View file

@ -69,6 +69,9 @@ void status_draw(void)
{
int battlevel = battery_level();
int volume = mpeg_val2phys(SOUND_VOLUME, global_settings.volume);
#ifdef HAVE_LCD_BITMAP
int hour, minute;
#endif
#if defined(HAVE_LCD_CHARCELLS)
lcd_icon(ICON_BATTERY, true);
@ -172,7 +175,11 @@ void status_draw(void)
if (keys_locked)
statusbar_icon_lock();
#ifdef HAVE_RTC
statusbar_time( rtc_read(3)*60 + rtc_read(2) );
hour = rtc_read(3);
hour = ((hour & 0x30) >> 4) * 10 + (hour & 0x0f);
minute = rtc_read(2);
minute = ((minute & 0x70) >> 4) * 10 + (minute & 0x0f);
statusbar_time(hour, minute);
#endif
#ifdef SIMULATOR