1
0
Fork 0
forked from len0rd/rockbox

prevent the "end of (song) list" getting displayed if there's an mpeg

playing or pending to get played.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1956 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-08-23 13:27:17 +00:00
parent ab9a94e289
commit c1fe36f36f

View file

@ -78,7 +78,7 @@ static void draw_screen(struct mp3entry* id3)
#endif #endif
lcd_clear_display(); lcd_clear_display();
if(!id3) if(!id3 && !mpeg_is_playing())
{ {
#ifdef HAVE_LCD_CHARCELLS #ifdef HAVE_LCD_CHARCELLS
lcd_puts(0, 0, "End of list"); lcd_puts(0, 0, "End of list");