summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-08-07 05:38:44 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-08-07 05:38:44 +0000
commit7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68 (patch)
treee25cd01ce52089e1213e074111c05a4442430e60 /apps
parente07726201800618236569d996c9186e5cd6ede88 (diff)
downloadrockbox-7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68.tar.gz
rockbox-7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68.zip
Made the time display fit on the Player screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1574 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 131ae42596..506cba7d15 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -213,7 +213,7 @@ int wps_show(void)
213 the screen has room. */ 213 the screen has room. */
214 if (global_settings.wps_display == PLAY_DISPLAY_FILENAME_SCROLL) 214 if (global_settings.wps_display == PLAY_DISPLAY_FILENAME_SCROLL)
215 { 215 {
216 snprintf(buffer,sizeof(buffer), "Time: %d:%02d / %d:%02d", 216 snprintf(buffer,sizeof(buffer), "%d:%02d/%d:%02d",
217 id3->elapsed / 60000, 217 id3->elapsed / 60000,
218 id3->elapsed % 60000 / 1000, 218 id3->elapsed % 60000 / 1000,
219 id3->length / 60000, 219 id3->length / 60000,