diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-02-28 23:44:09 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-02-28 23:44:09 +0000 |
commit | 35ad10be598ccfb0a0394d6def18fa32c74d3d9d (patch) | |
tree | 053e739b8e0317df17af22a99f665046d71b23bf /apps | |
parent | b49602e7a9e9ecf811d793be612aceba570a6f51 (diff) |
Unpause after seeking on archos.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12525 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/cuesheet.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c index 58be9fcbf4..7a5eb32193 100644 --- a/apps/cuesheet.c +++ b/apps/cuesheet.c @@ -181,10 +181,12 @@ static bool seek(unsigned long pos) { #if (CONFIG_CODEC == SWCODEC) audio_pre_ff_rewind(); + audio_ff_rewind(pos); #else audio_pause(); -#endif audio_ff_rewind(pos); + audio_resume(); +#endif return true; } } |