diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-27 09:37:15 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-27 09:37:15 +0000 |
| commit | b8a50eb52e9d39a34a936ff51698889f2c697f66 (patch) | |
| tree | e40b0e6e25f7fe831d556a7e477451e6b1bb9195 /apps | |
| parent | 736a19266d2e3fb51751b86c9b84d10dc567ecd5 (diff) | |
| download | rockbox-b8a50eb52e9d39a34a936ff51698889f2c697f66.zip rockbox-b8a50eb52e9d39a34a936ff51698889f2c697f66.tar.gz rockbox-b8a50eb52e9d39a34a936ff51698889f2c697f66.tar.bz2 rockbox-b8a50eb52e9d39a34a936ff51698889f2c697f66.tar.xz | |
Fixed a glitch in the Recorder status bar volume icon display, bug #898145
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4807 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/icons.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index e06923c..fc7a18e 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -232,7 +232,6 @@ void statusbar_icon_volume(int percent) else { if (last_volume != volume) { switch_tick = current_tick + HZ; - last_volume = volume; } /* display volume level numerical? */ @@ -258,6 +257,7 @@ void statusbar_icon_volume(int percent) } } } + last_volume = volume; } /* |