diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-03-15 12:09:09 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-03-15 12:09:09 +0000 |
commit | 001226c7e1c20508466f77567607e623ee629389 (patch) | |
tree | 68bf4ed37af2d0ddf4aaec7b755b34ce10abdaed /firmware | |
parent | 7105b28bbad6a4d830d3d6b6c44ecdc68c7d98b3 (diff) |
patch #702874 by Craig Sather, fixes a pause bug in WPS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3447 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c index 9528ede0ec..e1312c7399 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -1300,6 +1300,7 @@ static void mpeg_thread(void) /* Stop the current stream */ play_pending = false; playing = false; + paused = false; stop_dma(); reset_mp3_buffer(); @@ -1339,7 +1340,6 @@ static void mpeg_thread(void) /* Tell the file loading code that we want to start playing as soon as we have some data */ play_pending = true; - paused = false; update_playlist(); current_track_counter++; |