summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-06-27 16:32:54 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-06-27 16:32:54 +0000
commite56fa6dc84c963207b4dfafb4a9e814aee5ad343 (patch)
tree6f837f5c2e5e09aa1b9898487b58a75bad78dabe
parent86487815beb5f6df65e598a1eb79b5fe1d060714 (diff)
downloadrockbox-e56fa6dc84c963207b4dfafb4a9e814aee5ad343.tar.gz
rockbox-e56fa6dc84c963207b4dfafb4a9e814aee5ad343.zip
Ehm, here's the player title scroll.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1236 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 8a20adf413..031c20b9f7 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -109,7 +109,7 @@ static void draw_screen(struct mp3entry* id3)
109#else 109#else
110 110
111 lcd_puts(0, l++, id3->artist?id3->artist:"<no artist>"); 111 lcd_puts(0, l++, id3->artist?id3->artist:"<no artist>");
112 lcd_puts(0, l++, id3->title?id3->title:"<no title>"); 112 lcd_puts_scroll(0, l++, id3->title?id3->title:"<no title>");
113#endif 113#endif
114 break; 114 break;
115 } 115 }