more fixes

This commit is contained in:
Nayla Hanegan 2025-01-03 16:56:40 -05:00
parent 813d535002
commit a50aaccaad
2 changed files with 1 additions and 3 deletions

View file

@ -89,7 +89,7 @@ SConfig::~SConfig()
namespace Config
{
const Info<int> MAIN_CODE_HANDLER{{System::Main, "CodeHandler", "CodeHandlerValue"}, 0};
const Info<int> MAIN_CODE_HANDLER{{System::Main, "CodeHandler", "CodeHandlerValue"}, 1};
}
void SConfig::SaveSettings()

View file

@ -227,8 +227,6 @@ void GeneralPane::CreateCheats()
m_combobox_codehandler->addItem(tr("Dolphin (Stock)"), QVariant(0));
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);