change registry flag

This commit is contained in:
Nayla Hanegan 2025-01-03 16:54:19 -05:00
commit 813d535002
6 changed files with 14 additions and 10 deletions

View file

@ -225,7 +225,9 @@ void GeneralPane::CreateCheats()
m_combobox_codehandler = new QComboBox();
m_combobox_codehandler->addItem(tr("Dolphin (Stock)"), QVariant(0));
m_combobox_codehandler->addItem(tr("MPN (Super Extended)"), QVariant(2));
m_combobox_codehandler->addItem(tr("MPN (Extended)"), QVariant(1));
m_combobox_codehandler->setCurrentIndex(1);
code_handler_layout->addRow(code_handler_label, m_combobox_codehandler);
cheats_group_layout->addLayout(code_handler_layout);