gs: pause configuration screen when opened

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2021-05-13 17:46:58 +02:00 committed by Kojin
parent 707d2dae71
commit 9d4c41e051
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,8 @@
#include "Renderers/OpenGL/GSRendererOGL.h"
#include "GSLzma.h"
#include "AppCoreThread.h"
#ifdef _WIN32
#include "Renderers/DX11/GSRendererDX11.h"
@ -706,6 +708,7 @@ int GSfreeze(int mode, GSFreezeData* data)
void GSconfigure()
{
ScopedCoreThreadPause paused_core;
try
{
if (!GSUtil::CheckSSE())
@ -750,6 +753,7 @@ void GSconfigure()
catch (GSRecoverableError)
{
}
paused_core.AllowResume();
}
int GStest()