GSDumpRunner: Fix dump runner not starting

This commit is contained in:
refractionpcsx2 2023-12-27 19:10:47 +00:00
parent b7ae453d84
commit 71eaef35e3
1 changed files with 4 additions and 0 deletions

View File

@ -91,6 +91,10 @@ bool GSRunner::InitializeConfig()
if (!EmuFolders::InitializeCriticalFolders())
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.
MemorySettingsInterface& si = s_settings_interface;
Host::Internal::SetBaseSettingsLayer(&si);