From f3f495d23b5fabe8c6e7278f046a3312898e6f04 Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Sun, 11 Sep 2022 00:35:08 +0100 Subject: [PATCH] WX: Add Disable Hardware Readbacks option Adds the missing disable hardware readback option to WX. --- pcsx2/GS/Window/GSwxDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcsx2/GS/Window/GSwxDialog.cpp b/pcsx2/GS/Window/GSwxDialog.cpp index e6cb9fac88..00b608f384 100644 --- a/pcsx2/GS/Window/GSwxDialog.cpp +++ b/pcsx2/GS/Window/GSwxDialog.cpp @@ -558,6 +558,7 @@ DebugTab::DebugTab(wxWindow* parent) m_ui.addCheckBox(debug_check_box, "Disable Dual-Source Blending", "DisableDualSourceBlend"); m_ui.addCheckBox(debug_check_box, "Use Debug Device", "UseDebugDevice"); m_ui.addCheckBox(debug_check_box, "Dump GS data", "dump"); + m_ui.addCheckBox(debug_check_box, "Disable Hardware Readbacks", "HWDisableReadbacks"); auto* debug_save_check_box = new wxWrapSizer(wxHORIZONTAL); m_ui.addCheckBox(debug_save_check_box, "Save RT", "save");