Removed warning

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1238 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-06-27 17:24:11 +00:00
parent 930880fb80
commit 15e21eb85b

View file

@ -119,7 +119,6 @@ void wps_show(void)
struct mp3entry* id3 = mpeg_current_track();
int lastlength=0, lastsize=0, lastrate=0;
int lastartist=0, lastalbum=0, lasttitle=0;
char buffer[32];
while ( 1 ) {
int i;
@ -141,6 +140,8 @@ void wps_show(void)
}
#ifdef HAVE_LCD_BITMAP
{
char buffer[32];
snprintf(buffer,sizeof(buffer), "Time: %d:%02d / %d:%02d",
id3->elapsed / 60000,
id3->elapsed % 60000 / 1000,
@ -148,6 +149,7 @@ void wps_show(void)
id3->length % 60000 / 1000 );
lcd_puts(0, 6, buffer);
lcd_update();
}
#endif
for ( i=0;i<5;i++ ) {