From 65fb5f57dc1bd9702b0ce7ba1a79c7b6702aab1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= 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(+) diff --git a/apps/status.c b/apps/status.c index 7d941c3..a7bc21e 100644 --- a/apps/status.c +++ b/apps/status.c @@ -169,6 +169,11 @@ void status_draw(void) #ifdef HAVE_RTC statusbar_time(); #endif +#ifdef SIMULATOR + lcd_update(); +#else + lcd_update_rect(0,0,LCD_WIDTH,8); +#endif } #endif } -- cgit v1.1