From 65fb5f57dc1bd9702b0ce7ba1a79c7b6702aab1f Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Tue, 20 Aug 2002 14:33:02 +0000 Subject: status_draw() now uses lcd_update_rect() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1820 a1c6a512-1295-4272-9138-f99709370657 --- apps/status.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apps/status.c') diff --git a/apps/status.c b/apps/status.c index 7d941c30bc..a7bc21e78d 100644 --- a/apps/status.c +++ b/apps/status.c @@ -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 -- cgit v1.2.3