FifoManager: Remove redundant PauseAndLock parameters

PauseAndLock was only called with do_lock=true, and the function only
used unpauseOnUnlock when do_lock was false.
This commit is contained in:
Dentomologist
2025-10-26 18:01:51 -07:00
parent f497eb519e
commit 933071dd57
5 changed files with 10 additions and 18 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ void VideoConfig::Refresh()
const bool lock_gpu_thread = Core::IsRunning(system);
if (lock_gpu_thread)
system.GetFifo().PauseAndLock(true, false);
system.GetFifo().PauseAndLock();
g_Config.Refresh();
g_Config.VerifyValidity();