diff options
| -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 58be9fc..7a5eb32 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; } } |