diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-08 05:56:34 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-08 05:56:34 +0000 |
| commit | e03366d54ea1389272ec1ddbf15dd3c63df24842 (patch) | |
| tree | d3f7946672f0ec4d030532683c427d0995cdb9f3 | |
| parent | 445f17eda471e2a4f49e78afdbd2f7c258316185 (diff) | |
| download | rockbox-e03366d54ea1389272ec1ddbf15dd3c63df24842.zip rockbox-e03366d54ea1389272ec1ddbf15dd3c63df24842.tar.gz rockbox-e03366d54ea1389272ec1ddbf15dd3c63df24842.tar.bz2 rockbox-e03366d54ea1389272ec1ddbf15dd3c63df24842.tar.xz | |
Made the time display fit on Players
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1605 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/wps.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -477,7 +477,7 @@ int wps_show(void) if (global_settings.wps_display == PLAY_DISPLAY_FILENAME_SCROLL) { - snprintf(buffer,sizeof(buffer), "Time:%3d:%02d/%d:%02d", + snprintf(buffer,sizeof(buffer), "%d:%02d/%d:%02d ", id3->elapsed / 60000, id3->elapsed % 60000 / 1000, id3->length / 60000, |