From 30836cdae3e5630aac802f9a4b2c30c895055ed1 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Fri, 1 Nov 2024 02:57:59 -0700 Subject: [PATCH] rominfownd: fix order of ROM loader selection nds-bootstrap needs to be `1` for things to work. --- arm9/source/rominfownd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/rominfownd.cpp b/arm9/source/rominfownd.cpp index 30c6902..80ca602 100644 --- a/arm9/source/rominfownd.cpp +++ b/arm9/source/rominfownd.cpp @@ -331,8 +331,8 @@ void cRomInfoWnd::pressSaveType(void) { #ifdef __KERNEL_LAUNCHER_SUPPORT__ _values.clear(); - _values.push_back("nds-bootstrap"); _values.push_back("kernel"); + _values.push_back("nds-bootstrap"); _values.push_back(LANG("save type", "default")); settingWnd.addSettingItem(LANG("loader", "text"), _values, _romInfo.saveInfo().getNdsBootstrap());