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:
parent
ab9a94e289
commit
c1fe36f36f
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ static void draw_screen(struct mp3entry* id3)
|
|||
#endif
|
||||
|
||||
lcd_clear_display();
|
||||
if(!id3)
|
||||
if(!id3 && !mpeg_is_playing())
|
||||
{
|
||||
#ifdef HAVE_LCD_CHARCELLS
|
||||
lcd_puts(0, 0, "End of list");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue