DSPEmulator: Remove unused PauseAndLock parameter

This commit is contained in:
Dentomologist
2023-06-01 16:56:22 -07:00
parent 3a8e7de214
commit ee684b0798
6 changed files with 6 additions and 6 deletions

View File

@ -812,7 +812,7 @@ static bool PauseAndLock(Core::System& system, bool do_lock, bool unpause_on_unl
system.GetExpansionInterface().PauseAndLock(do_lock, false);
// audio has to come after CPU, because CPU thread can wait for audio thread (m_throttle).
system.GetDSP().GetDSPEmulator()->PauseAndLock(do_lock, false);
system.GetDSP().GetDSPEmulator()->PauseAndLock(do_lock);
// video has to come after CPU, because CPU thread can wait for video thread
// (s_efbAccessRequested).