1
0
Fork 0
forked from len0rd/rockbox

Fix for the wrong volume display on the player when MENU+UP/DOWN pressed. Please verify! (I've no player)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2501 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Uwe Freese 2002-10-04 12:23:08 +00:00
parent d3b92e9521
commit 0ac414ac78

View file

@ -95,7 +95,7 @@ void player_change_volume(int button)
}
snprintf(buffer,sizeof(buffer),"Vol: %d %% ",
global_settings.volume * 2);
global_settings.volume);
#ifdef HAVE_LCD_CHARCELLS
lcd_puts(0, 0, buffer);