Add 5 second buffer to end of track as duration may be inaccurate

This commit is contained in:
1hitsong 2024-01-08 20:05:45 -05:00
parent 03b2768d58
commit 0d8f9d127b

View File

@ -593,7 +593,7 @@ sub processScrubAction(seekStep as integer)
end if
' Don't let seek to go past the end of the song
if m.scrubTimestamp + seekStep > m.songDuration
if m.scrubTimestamp + seekStep > m.songDuration - 5
return
end if