diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2003-04-23 11:26:25 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2003-04-23 11:26:25 +0000 |
| commit | 942bc9449ea587fc3d50a468da56df32baf0748f (patch) | |
| tree | ca3731dfb763dbb299fe0edb41fa019263b588a0 /apps/recorder | |
| parent | 10fd7b6c3b3ed8bfd15ec1a6b67aaff3c4cf2a69 (diff) | |
| download | rockbox-942bc9449ea587fc3d50a468da56df32baf0748f.zip rockbox-942bc9449ea587fc3d50a468da56df32baf0748f.tar.gz rockbox-942bc9449ea587fc3d50a468da56df32baf0748f.tar.bz2 rockbox-942bc9449ea587fc3d50a468da56df32baf0748f.tar.xz | |
Only redraw the status line when info actually changed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3588 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
| -rw-r--r-- | apps/recorder/icons.c | 8 | ||||
| -rw-r--r-- | apps/recorder/recording.c | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index c8fe622..af03520 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -139,14 +139,6 @@ unsigned char rockbox112x37[]={ }; /* - * Wipe statusbar - */ -void statusbar_wipe(void) -{ - lcd_clearrect(0,0,LCD_WIDTH,8); -} - -/* * Print battery icon to status bar */ void statusbar_icon_battery(int percent, bool charging) diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 14bd37d..bff8773 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -416,7 +416,7 @@ bool recording_screen(void) global_settings.rec_quality); lcd_puts(0, 6, buf); - status_draw(); + status_draw(false); lcd_update(); } |