mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 09:18:36 +00:00
Hide super extended
This commit is contained in:
parent
61c181431c
commit
d9503b915f
2 changed files with 2 additions and 2 deletions
|
@ -67,7 +67,6 @@
|
||||||
#include "Core/State.h"
|
#include "Core/State.h"
|
||||||
#include "Core/System.h"
|
#include "Core/System.h"
|
||||||
#include "Core/WiiUtils.h"
|
#include "Core/WiiUtils.h"
|
||||||
#include "PropertiesDialog.h"
|
|
||||||
#include "DiscIO/DirectoryBlob.h"
|
#include "DiscIO/DirectoryBlob.h"
|
||||||
#include "DiscIO/NANDImporter.h"
|
#include "DiscIO/NANDImporter.h"
|
||||||
#include "DiscIO/RiivolutionPatcher.h"
|
#include "DiscIO/RiivolutionPatcher.h"
|
||||||
|
@ -81,6 +80,7 @@
|
||||||
#include "DolphinQt/Config/LogConfigWidget.h"
|
#include "DolphinQt/Config/LogConfigWidget.h"
|
||||||
#include "DolphinQt/Config/LogWidget.h"
|
#include "DolphinQt/Config/LogWidget.h"
|
||||||
#include "DolphinQt/Config/Mapping/MappingWindow.h"
|
#include "DolphinQt/Config/Mapping/MappingWindow.h"
|
||||||
|
#include "DolphinQt/Config/PropertiesDialog.h"
|
||||||
#include "DolphinQt/Config/SettingsWindow.h"
|
#include "DolphinQt/Config/SettingsWindow.h"
|
||||||
#include "DolphinQt/Debugger/AssemblerWidget.h"
|
#include "DolphinQt/Debugger/AssemblerWidget.h"
|
||||||
#include "DolphinQt/Debugger/BreakpointWidget.h"
|
#include "DolphinQt/Debugger/BreakpointWidget.h"
|
||||||
|
|
|
@ -227,7 +227,7 @@ void GeneralPane::CreateCheats()
|
||||||
m_combobox_codehandler = new QComboBox();
|
m_combobox_codehandler = new QComboBox();
|
||||||
m_combobox_codehandler->addItem(tr("Dolphin (Stock)"), QVariant(0));
|
m_combobox_codehandler->addItem(tr("Dolphin (Stock)"), QVariant(0));
|
||||||
m_combobox_codehandler->addItem(tr("MPN (Extended)"), QVariant(1));
|
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);
|
code_handler_layout->addRow(code_handler_label, m_combobox_codehandler);
|
||||||
|
|
||||||
cheats_group_layout->addLayout(code_handler_layout);
|
cheats_group_layout->addLayout(code_handler_layout);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue