1
0
Fork 0
forked from len0rd/rockbox

status_draw() now uses lcd_update_rect()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1820 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-08-20 14:33:02 +00:00
parent bfc8d0ac44
commit 65fb5f57dc

View file

@ -168,6 +168,11 @@ void status_draw(void)
statusbar_icon_lock();
#ifdef HAVE_RTC
statusbar_time();
#endif
#ifdef SIMULATOR
lcd_update();
#else
lcd_update_rect(0,0,LCD_WIDTH,8);
#endif
}
#endif