From 4de8932fe006afb582728158944de0463861eab0 Mon Sep 17 00:00:00 2001 From: Erik Zandvliet Date: Sat, 21 Jan 2017 10:39:49 +0100 Subject: [PATCH] Fix in mp3 seeking code to correctly set the timestamp. --- src/input/input_mp3.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input/input_mp3.cpp b/src/input/input_mp3.cpp index fb7f6fed..c59c924e 100644 --- a/src/input/input_mp3.cpp +++ b/src/input/input_mp3.cpp @@ -174,6 +174,7 @@ namespace Mist { break; } seekPos = keys[i].getBpos(); + timestamp = keys[i].getTime(); } timestamp = seekTime; fseek(inFile, seekPos, SEEK_SET);