mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Movie: Fix FrameSkipping determinism condition
The old condition seems to be a typo of !(IsMovieActive() || NetPlay::IsNetPlayRunning())
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user