From f775a22fc9d4353f126b6bbc16893dbba64a8498 Mon Sep 17 00:00:00 2001 From: Kei <7037851+coderkei@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:30:24 +0000 Subject: [PATCH] Fixed soft reset for themes --- .gitignore | 1 + arm9/source/mainwnd.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 214c218..7266ac1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ build themes package data/load.bin +.vscode *.elf *.nds *.dsi diff --git a/arm9/source/mainwnd.cpp b/arm9/source/mainwnd.cpp index 2a60bcb..c0f03d8 100644 --- a/arm9/source/mainwnd.cpp +++ b/arm9/source/mainwnd.cpp @@ -608,7 +608,7 @@ void cMainWnd::setParam(void) { gs().uiName = uiNames[uiIndexAfter]; gs().langDirectory = langNames[langIndexAfter]; gs().saveSettings(); - HomebrewLauncher().launchRom("/akmenu4.nds", "", 0, 0, 0); + HomebrewLauncher().launchRom("/BOOT.NDS", "", 0, 0, 0); } } @@ -618,7 +618,7 @@ void cMainWnd::setParam(void) { if (ID_YES == ret) { gs().langDirectory = langNames[langIndexAfter]; gs().saveSettings(); - HomebrewLauncher().launchRom("/akmenu4.nds", "", 0, 0, 0); + HomebrewLauncher().launchRom("/BOOT.NDS", "", 0, 0, 0); } }