summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-03-15 12:09:09 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-03-15 12:09:09 +0000
commit001226c7e1c20508466f77567607e623ee629389 (patch)
tree68bf4ed37af2d0ddf4aaec7b755b34ce10abdaed /firmware
parent7105b28bbad6a4d830d3d6b6c44ecdc68c7d98b3 (diff)
downloadrockbox-001226c7e1c20508466f77567607e623ee629389.tar.gz
rockbox-001226c7e1c20508466f77567607e623ee629389.zip
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.c2
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)
1300 /* Stop the current stream */ 1300 /* Stop the current stream */
1301 play_pending = false; 1301 play_pending = false;
1302 playing = false; 1302 playing = false;
1303 paused = false;
1303 stop_dma(); 1304 stop_dma();
1304 1305
1305 reset_mp3_buffer(); 1306 reset_mp3_buffer();
@@ -1339,7 +1340,6 @@ static void mpeg_thread(void)
1339 /* Tell the file loading code that we want to start playing 1340 /* Tell the file loading code that we want to start playing
1340 as soon as we have some data */ 1341 as soon as we have some data */
1341 play_pending = true; 1342 play_pending = true;
1342 paused = false;
1343 1343
1344 update_playlist(); 1344 update_playlist();
1345 current_track_counter++; 1345 current_track_counter++;