1
0
Fork 0
forked from len0rd/rockbox

Minor change in display of previous volume display patch

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1792 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Justin Heiner 2002-08-17 00:41:36 +00:00
parent 80743ff20c
commit 0d04073576

View file

@ -332,8 +332,7 @@ void display_volume_level(int vol_level)
char buffer[32]; char buffer[32];
lcd_stop_scroll(); lcd_stop_scroll();
lcd_clear_display(); snprintf(buffer,sizeof(buffer),"Vol: %d %s ", vol_level * 2, "%");
snprintf(buffer,sizeof(buffer),"Vol: %d %s", vol_level * 2, "%");
#ifdef HAVE_LCD_CHARCELLS #ifdef HAVE_LCD_CHARCELLS
lcd_puts(0, 0, buffer); lcd_puts(0, 0, buffer);