summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2023-06-04 17:18:18 -0700
committerDentomologist <dentomologist@gmail.com>2025-10-26 18:01:51 -0700
commit933071dd573c202de8c3c722e042d37d6bfcc2d1 (patch)
tree6cf331900c78794a147fd27918ad2ec59705ed95 /Source/Core/VideoCommon/VideoConfig.cpp
parentf497eb519e672a0dffbcd029dc937425af754ba0 (diff)
FifoManager: Remove redundant PauseAndLock parameters
PauseAndLock was only called with do_lock=true, and the function only used unpauseOnUnlock when do_lock was false.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index 4c11fb084e..60668f9f2d 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -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();