diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-08-20 14:33:02 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-20 14:33:02 +0000 |
commit | 65fb5f57dc1bd9702b0ce7ba1a79c7b6702aab1f (patch) | |
tree | a4c6f5dbb236b2377d99d9ff1f3d8879927aad9d /apps | |
parent | bfc8d0ac44374201e3e63f6e7421949fede315b7 (diff) |
status_draw() now uses lcd_update_rect()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1820 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/status.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/status.c b/apps/status.c index 7d941c30bc..a7bc21e78d 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 } |