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; } }