diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-07 05:38:44 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-07 05:38:44 +0000 |
| commit | 7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68 (patch) | |
| tree | e25cd01ce52089e1213e074111c05a4442430e60 | |
| parent | e07726201800618236569d996c9186e5cd6ede88 (diff) | |
| download | rockbox-7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68.zip rockbox-7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68.tar.gz rockbox-7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68.tar.bz2 rockbox-7b95b82e2e9e8a4e0b030fad425f82ef20eb1c68.tar.xz | |
Made the time display fit on the Player screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1574 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/wps.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ int wps_show(void) the screen has room. */ if (global_settings.wps_display == PLAY_DISPLAY_FILENAME_SCROLL) { - snprintf(buffer,sizeof(buffer), "Time: %d:%02d / %d:%02d", + snprintf(buffer,sizeof(buffer), "%d:%02d/%d:%02d", id3->elapsed / 60000, id3->elapsed % 60000 / 1000, id3->length / 60000, |