From a6649b2d6b558806fbe7cbaf6296014e3c5c192e Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Sun, 5 Jun 2022 00:01:19 +0200 Subject: [PATCH] GS: Fix SkipDuplicateFrames default config. --- pcsx2/GS/GS.cpp | 2 +- pcsx2/GS/Window/GSwxDialog.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/GS/GS.cpp b/pcsx2/GS/GS.cpp index 5841a2773a..326f936c62 100644 --- a/pcsx2/GS/GS.cpp +++ b/pcsx2/GS/GS.cpp @@ -1426,7 +1426,7 @@ void GSApp::Init() m_default_configuration["shaderfx"] = "0"; m_default_configuration["shaderfx_conf"] = "shaders/GS_FX_Settings.ini"; m_default_configuration["shaderfx_glsl"] = "shaders/GS.fx"; - m_default_configuration["skip_duplicate_frames"] = "0"; + m_default_configuration["SkipDuplicateFrames"] = "0"; m_default_configuration["texture_preloading"] = "0"; m_default_configuration["ThreadedPresentation"] = "0"; m_default_configuration["TVShader"] = "0"; diff --git a/pcsx2/GS/Window/GSwxDialog.cpp b/pcsx2/GS/Window/GSwxDialog.cpp index df69f13ede..fd26f5a495 100644 --- a/pcsx2/GS/Window/GSwxDialog.cpp +++ b/pcsx2/GS/Window/GSwxDialog.cpp @@ -342,7 +342,7 @@ HacksTab::HacksTab(wxWindow* parent) auto hw_prereq = [this]{ return m_is_hardware; }; auto* hacks_check_box = m_ui.addCheckBox(tab_box.inner, "Manual HW Hacks (Disables automatic settings if checked)", "UserHacks", -1, hw_prereq); - m_ui.addCheckBox(tab_box.inner, "Skip Presenting Duplicate Frames", "skip_duplicate_frames", -1); + m_ui.addCheckBox(tab_box.inner, "Skip Presenting Duplicate Frames", "SkipDuplicateFrames", -1); auto hacks_prereq = [this, hacks_check_box]{ return m_is_hardware && hacks_check_box->GetValue(); }; auto upscale_hacks_prereq = [this, hacks_check_box]{ return !m_is_native_res && hacks_check_box->GetValue(); };