From c60bb9ee42eea2c88ef90228274bd28350a87ae4 Mon Sep 17 00:00:00 2001 From: ailurux Date: Fri, 16 Feb 2024 16:19:12 +1100 Subject: [PATCH] Fix issue with seeking whilst paused --- src/audio/audio_fsm.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/audio/audio_fsm.cpp b/src/audio/audio_fsm.cpp index 0e213b6e..bb7d33dc 100644 --- a/src/audio/audio_fsm.cpp +++ b/src/audio/audio_fsm.cpp @@ -254,8 +254,6 @@ void Playback::react(const PlayFile& ev) { } void Standby::react(const SeekFile& ev) { - sCurrentTrack = 0; - sIsPlaybackAllowed = true; sFileSource->SetPath(ev.filename, ev.offset); }