Skip to content

Commit

Permalink
Fix mistake in 59512d5.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed Jun 29, 2013
1 parent 59512d5 commit 2996ed9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/mythplayer.cpp
Expand Up @@ -4703,7 +4703,7 @@ int64_t MythPlayer::GetTotalSeconds(bool honorCutList, int divisor) const
uint64_t pos = totalFrames;

if (IsWatchingInprogress())
return (uint64_t)-1;
pos = (uint64_t)-1;

return TranslatePositionFrameToMs(pos, honorCutList) / divisor;
}
Expand Down

0 comments on commit 2996ed9

Please sign in to comment.