From 38498d3ee268e044081ce6dd3d9f6e254817d069 Mon Sep 17 00:00:00 2001 From: Johann Uhrmann Date: Sun, 23 Aug 2020 12:17:10 +0200 Subject: [PATCH] Removed duplicate check for negative song time --- src/queue/PlaylistControl.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/queue/PlaylistControl.cxx b/src/queue/PlaylistControl.cxx index e3f619199..db01d5501 100644 --- a/src/queue/PlaylistControl.cxx +++ b/src/queue/PlaylistControl.cxx @@ -276,8 +276,6 @@ playlist::SeekCurrent(PlayerControl &pc, throw PlaylistError::NotPlaying(); seek_time += status.elapsed_time; - if (seek_time.IsNegative()) - seek_time = SignedSongTime::zero(); } if (seek_time.IsNegative())