From 942bc9449ea587fc3d50a468da56df32baf0748f Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Wed, 23 Apr 2003 11:26:25 +0000 Subject: Only redraw the status line when info actually changed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3588 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/settings.c') diff --git a/apps/settings.c b/apps/settings.c index f4949416cd..5646a43b01 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(); -- cgit v1.2.3