Removed duplicate check for negative song time

This commit is contained in:
Johann Uhrmann 2020-08-23 12:17:10 +02:00
parent 35d1d0bc6e
commit 38498d3ee2
1 changed files with 0 additions and 2 deletions

View File

@ -276,8 +276,6 @@ playlist::SeekCurrent(PlayerControl &pc,
throw PlaylistError::NotPlaying(); throw PlaylistError::NotPlaying();
seek_time += status.elapsed_time; seek_time += status.elapsed_time;
if (seek_time.IsNegative())
seek_time = SignedSongTime::zero();
} }
if (seek_time.IsNegative()) if (seek_time.IsNegative())