From 30bc7ea132713d2e1fda11f52f96c8e345c5bd74 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Wed, 7 May 2025 02:53:10 +0200 Subject: [PATCH] GSDumpRunner: Fix some userhack arguments not working. --- pcsx2-gsrunner/Main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2-gsrunner/Main.cpp b/pcsx2-gsrunner/Main.cpp index 39f6f319ea..a431ca64c0 100644 --- a/pcsx2-gsrunner/Main.cpp +++ b/pcsx2-gsrunner/Main.cpp @@ -671,7 +671,7 @@ bool GSRunner::ParseCommandLineArgs(int argc, char* argv[], VMBootParameters& pa s_settings_interface.SetBoolValue("EmuCore/GS", "UserHacks", true); if (str.find("af") != std::string::npos) - s_settings_interface.SetBoolValue("EmuCore/GS", "UserHacks_AutoFlush", true); + s_settings_interface.SetIntValue("EmuCore/GS", "UserHacks_AutoFlushLevel", 1); if (str.find("cpufb") != std::string::npos) s_settings_interface.SetBoolValue("EmuCore/GS", "UserHacks_CPU_FB_Conversion", true); if (str.find("dds") != std::string::npos) @@ -679,9 +679,9 @@ bool GSRunner::ParseCommandLineArgs(int argc, char* argv[], VMBootParameters& pa if (str.find("dpi") != std::string::npos) s_settings_interface.SetBoolValue("EmuCore/GS", "UserHacks_DisablePartialInvalidation", true); if (str.find("dsf") != std::string::npos) - s_settings_interface.SetBoolValue("EmuCore/GS", "UserHacks_DisableSafeFeatures", true); + s_settings_interface.SetBoolValue("EmuCore/GS", "UserHacks_Disable_Safe_Features", true); if (str.find("tinrt") != std::string::npos) - s_settings_interface.SetBoolValue("EmuCore/GS", "UserHacks_TextureInsideRt", true); + s_settings_interface.SetIntValue("EmuCore/GS", "UserHacks_TextureInsideRt", 1); if (str.find("plf") != std::string::npos) s_settings_interface.SetBoolValue("EmuCore/GS", "preload_frame_with_gs_data", true);