summaryrefslogtreecommitdiff
path: root/apps/wps.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-23 13:27:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-23 13:27:17 +0000
commitc1fe36f36f192aba0f295535fbae7f262ca29be2 (patch)
tree0750e9278e793b87c07355f1c8cf7831e169d25b /apps/wps.c
parentab9a94e289f01c2b6616f0c58ce77da1fc4bbeaf (diff)
downloadrockbox-c1fe36f36f192aba0f295535fbae7f262ca29be2.tar.gz
rockbox-c1fe36f36f192aba0f295535fbae7f262ca29be2.zip
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
Diffstat (limited to 'apps/wps.c')
-rw-r--r--apps/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 802a099c2e..b602f60185 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -78,7 +78,7 @@ static void draw_screen(struct mp3entry* id3)
78#endif 78#endif
79 79
80 lcd_clear_display(); 80 lcd_clear_display();
81 if(!id3) 81 if(!id3 && !mpeg_is_playing())
82 { 82 {
83#ifdef HAVE_LCD_CHARCELLS 83#ifdef HAVE_LCD_CHARCELLS
84 lcd_puts(0, 0, "End of list"); 84 lcd_puts(0, 0, "End of list");