Core::RunOnCPUThread: Avoid Global System Accessor

This commit is contained in:
mitaclaw
2024-03-22 00:24:26 -07:00
parent aea1f64873
commit 6e6b298030
5 changed files with 17 additions and 10 deletions

View File

@ -574,7 +574,7 @@ bool MovieManager::BeginRecordingInput(const ControllerTypeArray& controllers,
if (Core::IsRunning())
Core::UpdateWantDeterminism(m_system);
};
Core::RunOnCPUThread(start_recording, true);
Core::RunOnCPUThread(m_system, start_recording, true);
Core::DisplayMessage("Starting movie recording", 2000);
return true;