summaryrefslogtreecommitdiff
path: root/apps/status.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-20 14:33:02 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-20 14:33:02 +0000
commit65fb5f57dc1bd9702b0ce7ba1a79c7b6702aab1f (patch)
treea4c6f5dbb236b2377d99d9ff1f3d8879927aad9d /apps/status.c
parentbfc8d0ac44374201e3e63f6e7421949fede315b7 (diff)
downloadrockbox-65fb5f57dc1bd9702b0ce7ba1a79c7b6702aab1f.tar.gz
rockbox-65fb5f57dc1bd9702b0ce7ba1a79c7b6702aab1f.zip
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/status.c')
-rw-r--r--apps/status.c5
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)
169#ifdef HAVE_RTC 169#ifdef HAVE_RTC
170 statusbar_time(); 170 statusbar_time();
171#endif 171#endif
172#ifdef SIMULATOR
173 lcd_update();
174#else
175 lcd_update_rect(0,0,LCD_WIDTH,8);
176#endif
172 } 177 }
173#endif 178#endif
174} 179}