From 71eaef35e33ff4bac0ab62f1452f3e342d67a45f Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Wed, 27 Dec 2023 19:10:47 +0000 Subject: [PATCH] GSDumpRunner: Fix dump runner not starting --- pcsx2-gsrunner/Main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcsx2-gsrunner/Main.cpp b/pcsx2-gsrunner/Main.cpp index a7fed12ce7..15e7bbd811 100644 --- a/pcsx2-gsrunner/Main.cpp +++ b/pcsx2-gsrunner/Main.cpp @@ -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);