mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 06:51:17 +01:00
Merge pull request #12886 from AdmiralCurtiss/dual-core-lockup
Core/VideoCommon: Revert change from #12828
This commit is contained in:
commit
883195f171
@ -66,12 +66,15 @@ void VideoConfig::Refresh()
|
|||||||
CPUThreadConfigCallback::AddConfigChangedCallback([]() {
|
CPUThreadConfigCallback::AddConfigChangedCallback([]() {
|
||||||
auto& system = Core::System::GetInstance();
|
auto& system = Core::System::GetInstance();
|
||||||
|
|
||||||
system.GetFifo().PauseAndLock(true, false);
|
const bool lock_gpu_thread = Core::IsRunning(system);
|
||||||
|
if (lock_gpu_thread)
|
||||||
|
system.GetFifo().PauseAndLock(true, false);
|
||||||
|
|
||||||
g_Config.Refresh();
|
g_Config.Refresh();
|
||||||
g_Config.VerifyValidity();
|
g_Config.VerifyValidity();
|
||||||
|
|
||||||
system.GetFifo().PauseAndLock(false, true);
|
if (lock_gpu_thread)
|
||||||
|
system.GetFifo().PauseAndLock(false, true);
|
||||||
});
|
});
|
||||||
s_has_registered_callback = true;
|
s_has_registered_callback = true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user