1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Linus Nielsen Feltzing 2004-06-27 09:37:15 +00:00
parent 736a19266d
commit b8a50eb52e

View file

@ -232,7 +232,6 @@ void statusbar_icon_volume(int percent)
else { else {
if (last_volume != volume) { if (last_volume != volume) {
switch_tick = current_tick + HZ; switch_tick = current_tick + HZ;
last_volume = volume;
} }
/* display volume level numerical? */ /* display volume level numerical? */
@ -258,6 +257,7 @@ void statusbar_icon_volume(int percent)
} }
} }
} }
last_volume = volume;
} }
/* /*