Skip to content

Commit

Permalink
fix pts jump when resume from fastforward
Browse files Browse the repository at this point in the history
  • Loading branch information
gt945 committed Jul 12, 2022
1 parent d41f538 commit 0385a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/VideoPlayer/VideoPlayer.cpp
Expand Up @@ -2913,7 +2913,7 @@ void CVideoPlayer::HandleMessages()

CDVDMsgPlayerSeek::CMode mode;
mode.time = iTime;
mode.backward = m_playSpeed < 0;
mode.backward = m_playSpeed > 0;
mode.accurate = true;
mode.trickplay = true;
mode.sync = true;
Expand Down

0 comments on commit 0385a4d

Please sign in to comment.