diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2003-04-09 12:10:22 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2003-04-09 12:10:22 +0000 |
| commit | d92265b5b643dba9e21da5824e72c966e284a6b8 (patch) | |
| tree | b95656ad0b30ea6b2c19aadcb78e0d520ed3dd9a | |
| parent | 46dea9080b54179488affb24fc2eca4231851ff2 (diff) | |
| download | rockbox-d92265b5b643dba9e21da5824e72c966e284a6b8.zip rockbox-d92265b5b643dba9e21da5824e72c966e284a6b8.tar.gz rockbox-d92265b5b643dba9e21da5824e72c966e284a6b8.tar.bz2 rockbox-d92265b5b643dba9e21da5824e72c966e284a6b8.tar.xz | |
Stop playing immediately when skipping to next or previous track.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3522 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/wps.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -914,8 +914,10 @@ int wps_show(void) if ( lastbutton != BUTTON_LEFT ) break; #endif - if (!id3 || (id3->elapsed < 3*1000)) + if (!id3 || (id3->elapsed < 3*1000)) { + mpeg_stop(); mpeg_prev(); + } else { if (!paused) mpeg_pause(); @@ -933,6 +935,7 @@ int wps_show(void) if ( lastbutton != BUTTON_RIGHT ) break; #endif + mpeg_stop(); mpeg_next(); break; |