From f6675808fc26ae38a918c9abf813fb9d83542903 Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Thu, 20 Mar 2025 14:17:01 +0000 Subject: [PATCH] GS/Runner: Set the screenshot compression low to stop slow dump times --- pcsx2-gsrunner/Main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcsx2-gsrunner/Main.cpp b/pcsx2-gsrunner/Main.cpp index b1d4497c6a..39f6f319ea 100644 --- a/pcsx2-gsrunner/Main.cpp +++ b/pcsx2-gsrunner/Main.cpp @@ -113,6 +113,10 @@ bool GSRunner::InitializeConfig() si.SetBoolValue("EmuCore/GS", "FrameLimitEnable", false); si.SetIntValue("EmuCore/GS", "VsyncEnable", false); + // Force screenshot quality settings to something more performant, overriding any defaults good for users. + si.SetIntValue("EmuCore/GS", "ScreenshotFormat", static_cast(GSScreenshotFormat::PNG)); + si.SetIntValue("EmuCore/GS", "ScreenshotQuality", 10); + // ensure all input sources are disabled, we're not using them si.SetBoolValue("InputSources", "SDL", false); si.SetBoolValue("InputSources", "XInput", false);