diff options
| author | Justin Heiner <jheiner@rockbox.org> | 2002-08-21 23:24:26 +0000 |
|---|---|---|
| committer | Justin Heiner <jheiner@rockbox.org> | 2002-08-21 23:24:26 +0000 |
| commit | 7dcff6d98c4a7cc75a67f4134014deac2150724c (patch) | |
| tree | fa741332dd3588af88957933775e7324195f455a | |
| parent | ed04872b469b12132a8dd4b5562faebc5ca42bb3 (diff) | |
| download | rockbox-7dcff6d98c4a7cc75a67f4134014deac2150724c.zip rockbox-7dcff6d98c4a7cc75a67f4134014deac2150724c.tar.gz rockbox-7dcff6d98c4a7cc75a67f4134014deac2150724c.tar.bz2 rockbox-7dcff6d98c4a7cc75a67f4134014deac2150724c.tar.xz | |
Changed the previous patch to restart the same song if over 2 seconds to 3 seconds. That way you can hear a bit of the song before... well, it's just better this way *grin*
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1902 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/wps.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -682,7 +682,7 @@ int wps_show(void) else #endif { - if (id3->elapsed < 2*1000) + if (id3->elapsed < 3*1000) mpeg_prev(); else { mpeg_pause(); |