mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #3978 from JosJuice/frameskipping-determinism
Movie: Fix FrameSkipping determinism condition
This commit is contained in:
commit
ebf10d38dd
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue