GS/Runner: Set the screenshot compression low to stop slow dump times

This commit is contained in:
refractionpcsx2 2025-03-20 14:17:01 +00:00
parent aa64712354
commit f6675808fc
1 changed files with 4 additions and 0 deletions

View File

@ -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<int>(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);