diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-08-23 13:27:17 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-23 13:27:17 +0000 |
| commit | c1fe36f36f192aba0f295535fbae7f262ca29be2 (patch) | |
| tree | 0750e9278e793b87c07355f1c8cf7831e169d25b | |
| parent | ab9a94e289f01c2b6616f0c58ce77da1fc4bbeaf (diff) | |
| download | rockbox-c1fe36f36f192aba0f295535fbae7f262ca29be2.zip rockbox-c1fe36f36f192aba0f295535fbae7f262ca29be2.tar.gz rockbox-c1fe36f36f192aba0f295535fbae7f262ca29be2.tar.bz2 rockbox-c1fe36f36f192aba0f295535fbae7f262ca29be2.tar.xz | |
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
| -rw-r--r-- | apps/wps.c | 2 |
1 files changed, 1 insertions, 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"); |