Skip to content

Commit

Permalink
GSDumpRunner: Fix dump runner not starting
Browse files Browse the repository at this point in the history
  • Loading branch information
refractionpcsx2 committed Dec 27, 2023
1 parent b7ae453 commit 71eaef3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pcsx2-gsrunner/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 71eaef3

Please sign in to comment.