diff options
-rw-r--r-- | xbmc/video/windows/GUIWindowVideoBase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xbmc/video/windows/GUIWindowVideoBase.cpp b/xbmc/video/windows/GUIWindowVideoBase.cpp index 8bd983b221..742a77d777 100644 --- a/xbmc/video/windows/GUIWindowVideoBase.cpp +++ b/xbmc/video/windows/GUIWindowVideoBase.cpp @@ -892,6 +892,10 @@ bool CGUIWindowVideoBase::OnSelect(int iItem) bool CGUIWindowVideoBase::OnFileAction(int iItem, int action) { CFileItemPtr item = m_vecItems->Get(iItem); + + // Reset the current start offset. The actual resume + // option is set in the switch, based on the action passed. + item->m_lStartOffset = 0; switch (action) { |