From d06855b6d19694c031fc8d5840f62b644336303d Mon Sep 17 00:00:00 2001 From: Nayla Hanegan Date: Tue, 3 Sep 2024 19:06:41 -0400 Subject: [PATCH] Revert "Hide super extended" This reverts commit d9503b915fe654b48c48ae9aa91f7b9e31fb0b58. --- Source/Core/DolphinQt/MainWindow.cpp | 2 +- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index ff86732580..341d042e55 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -67,6 +67,7 @@ #include "Core/State.h" #include "Core/System.h" #include "Core/WiiUtils.h" +#include "PropertiesDialog.h" #include "DiscIO/DirectoryBlob.h" #include "DiscIO/NANDImporter.h" #include "DiscIO/RiivolutionPatcher.h" @@ -80,7 +81,6 @@ #include "DolphinQt/Config/LogConfigWidget.h" #include "DolphinQt/Config/LogWidget.h" #include "DolphinQt/Config/Mapping/MappingWindow.h" -#include "DolphinQt/Config/PropertiesDialog.h" #include "DolphinQt/Config/SettingsWindow.h" #include "DolphinQt/Debugger/AssemblerWidget.h" #include "DolphinQt/Debugger/BreakpointWidget.h" diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index a6727ca73c..cf34a096aa 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -227,7 +227,7 @@ void GeneralPane::CreateCheats() m_combobox_codehandler = new QComboBox(); m_combobox_codehandler->addItem(tr("Dolphin (Stock)"), QVariant(0)); m_combobox_codehandler->addItem(tr("MPN (Extended)"), QVariant(1)); - //m_combobox_codehandler->addItem(tr("MPN (Super Extended)"), QVariant(2)); + m_combobox_codehandler->addItem(tr("MPN (Super Extended)"), QVariant(2)); code_handler_layout->addRow(code_handler_label, m_combobox_codehandler); cheats_group_layout->addLayout(code_handler_layout);