From 3dc50b0d74ff0eb1ef92d41ffc21a1f948c50051 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Tue, 13 Jul 2004 06:59:11 +0000 Subject: Fixed the slow status bar update in bug report #727790. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4868 a1c6a512-1295-4272-9138-f99709370657 --- apps/recorder/icons.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'apps/recorder/icons.c') diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index 6e0ff73fc8..b831e59f53 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -205,7 +205,7 @@ void statusbar_icon_battery(int percent, bool charging) /* * Print volume gauge to status bar */ -void statusbar_icon_volume(int percent) +bool statusbar_icon_volume(int percent) { int i,j; int volume; @@ -213,6 +213,8 @@ void statusbar_icon_volume(int percent) int step=0; char buffer[4]; unsigned int width, height; + bool needs_redraw = false; + int type = global_settings.volume_type; #if defined(LOADABLE_FONTS) unsigned char *font; #endif @@ -231,13 +233,20 @@ void statusbar_icon_volume(int percent) STATUSBAR_Y_POS, 7, STATUSBAR_HEIGHT, false); } else { + /* We want to redraw the icon later on */ if (last_volume != volume && last_volume >= 0) { switch_tick = current_tick + HZ; } + /* If the timeout hasn't yet been reached, we show it numerically + and tell the caller that we want to be called again */ + if(TIME_BEFORE(current_tick,switch_tick)) { + type = 1; + needs_redraw = true; + } + /* display volume level numerical? */ - if (global_settings.volume_type || - TIME_BEFORE(current_tick,switch_tick)) + if (type) { snprintf(buffer, sizeof(buffer), "%2d", percent); lcd_setfont(FONT_SYSFIXED); @@ -259,6 +268,8 @@ void statusbar_icon_volume(int percent) } } last_volume = volume; + + return needs_redraw; } /* -- cgit v1.2.3