diff options
| author | JosJuice <josjuice@gmail.com> | 2015-11-09 16:41:23 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2016-07-05 13:57:06 +0200 |
| commit | b6eb5c25d1265ede39711fbd525d0c461bf41522 (patch) | |
| tree | 9694a1db6ae43f5a44714a556190c998de66ad0d /Source/Core | |
| parent | 69bf05b302f06cb3935694e00270098c6e3b9d7a (diff) | |
Movie: Fix FrameSkipping determinism condition
The old condition seems to be a typo of
!(IsMovieActive() || NetPlay::IsNetPlayRunning())
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Movie.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index 3ebed8b7ef..374a9cfbf8 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -315,7 +315,7 @@ void SetReadOnly(bool bEnabled) void FrameSkipping() { // Frameskipping will desync movie playback - if (!IsMovieActive() || NetPlay::IsNetPlayRunning()) + if (!Core::g_want_determinism) { std::lock_guard<std::mutex> lk(cs_frameSkip); |
