From bec8b40edb47b1a0f487c04874b67372dabfe3d8 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Fri, 5 Aug 2022 11:41:29 +0200 Subject: [PATCH] GS-wx: Remove some unused upscale code for renderer tab. --- pcsx2/GS/Window/GSwxDialog.cpp | 1 - pcsx2/GS/Window/GSwxDialog.h | 1 - 2 files changed, 2 deletions(-) diff --git a/pcsx2/GS/Window/GSwxDialog.cpp b/pcsx2/GS/Window/GSwxDialog.cpp index 34f99bed59..3640d96d68 100644 --- a/pcsx2/GS/Window/GSwxDialog.cpp +++ b/pcsx2/GS/Window/GSwxDialog.cpp @@ -801,7 +801,6 @@ void Dialog::Update() m_hacks_panel->m_is_native_res = !is_hw || !is_upscale; m_hacks_panel->m_is_hardware = is_hw; m_renderer_panel->m_is_hardware = is_hw; - m_renderer_panel->m_is_native_res = !is_hw || !is_upscale; m_post_panel->m_is_vk_hw = renderer == GSRendererType::VK; m_debug_panel->m_is_ogl_hw = renderer == GSRendererType::OGL; m_debug_panel->m_is_vk_hw = renderer == GSRendererType::VK; diff --git a/pcsx2/GS/Window/GSwxDialog.h b/pcsx2/GS/Window/GSwxDialog.h index 051bab2d06..b96884dc0d 100644 --- a/pcsx2/GS/Window/GSwxDialog.h +++ b/pcsx2/GS/Window/GSwxDialog.h @@ -106,7 +106,6 @@ namespace GSSettingsDialog GSUIElementHolder m_ui; wxChoice* m_internal_resolution; bool m_is_hardware = false; - bool m_is_native_res = false; RendererTab(wxWindow* parent); void Load() { m_ui.Load(); }