mirror of https://github.com/PCSX2/pcsx2.git
GSDumpRunner: Fix dump runner not starting
This commit is contained in:
parent
b7ae453d84
commit
71eaef35e3
|
@ -91,6 +91,10 @@ bool GSRunner::InitializeConfig()
|
||||||
if (!EmuFolders::InitializeCriticalFolders())
|
if (!EmuFolders::InitializeCriticalFolders())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
const char* error;
|
||||||
|
if (!VMManager::PerformEarlyHardwareChecks(&error))
|
||||||
|
return false;
|
||||||
|
|
||||||
// don't provide an ini path, or bother loading. we'll store everything in memory.
|
// don't provide an ini path, or bother loading. we'll store everything in memory.
|
||||||
MemorySettingsInterface& si = s_settings_interface;
|
MemorySettingsInterface& si = s_settings_interface;
|
||||||
Host::Internal::SetBaseSettingsLayer(&si);
|
Host::Internal::SetBaseSettingsLayer(&si);
|
||||||
|
|
Loading…
Reference in New Issue