diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2005-07-23 16:09:50 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2005-07-23 16:09:50 +0000 |
| commit | 7fa9f603e284e04097a4879d2a228f22081954f8 (patch) | |
| tree | 82a7e37baf4d0a8ba8e6daf1761abdd59132b93e | |
| parent | ae5002d1da9684501e700efb32caa49ff445bc19 (diff) | |
| download | rockbox-7fa9f603e284e04097a4879d2a228f22081954f8.zip rockbox-7fa9f603e284e04097a4879d2a228f22081954f8.tar.gz rockbox-7fa9f603e284e04097a4879d2a228f22081954f8.tar.bz2 rockbox-7fa9f603e284e04097a4879d2a228f22081954f8.tar.xz | |
Fixed a hang while selecting a new track and playback was paused. This
was probably my last commit within the next three weeks, see you around!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7230 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/playback.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/playback.c b/apps/playback.c index ea05f3a..88a48a7 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -1392,6 +1392,8 @@ void audio_thread(void) break ; logf("starting..."); playing = true; + paused = false; + pcm_play_pause(true); ci.stop_codec = true; ci.reload_codec = false; ci.seek_time = 0; |