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/settings.c | |
| 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/settings.c')
| -rw-r--r-- | apps/settings.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings.c b/apps/settings.c index f494941..5646a43 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -1609,7 +1609,7 @@ bool set_int(char* string, snprintf(str,sizeof str,"%d %s ", *variable, unit); lcd_puts(0, 1, str); #ifdef HAVE_LCD_BITMAP - status_draw(); + status_draw(true); #endif lcd_update(); @@ -1699,7 +1699,7 @@ bool set_option(char* string, int* variable, char* options[], while ( !done ) { lcd_puts(0, 1, options[*variable]); #ifdef HAVE_LCD_BITMAP - status_draw(); + status_draw(true); #endif lcd_update(); @@ -1932,7 +1932,7 @@ bool set_time(char* string, int timedate[]) lcd_puts(0, 4, str(LANG_TIME_SET)); lcd_puts(0, 5, str(LANG_TIME_REVERT)); #ifdef HAVE_LCD_BITMAP - status_draw(); + status_draw(true); #endif lcd_update(); |