From 61f0c1a2c03d70bffa96a22b0020b107e855d79e Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Sat, 30 Mar 2024 21:45:02 -0600 Subject: [PATCH] Only reset system settings on region-changed JPN NANDs --- arm9/source/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arm9/source/main.cpp b/arm9/source/main.cpp index 0de17d2..a839363 100644 --- a/arm9/source/main.cpp +++ b/arm9/source/main.cpp @@ -363,7 +363,9 @@ int main( int argc, char **argv) { iprintf("\n"); if ((cursorPosition == 0) && (optionCount > 2)) { iprintf(" Change the SDNAND region.\n"); - iprintf(" System settings will be reset.\n"); + if (regionChar == 'J') { + iprintf(" System settings will be reset.\n"); + } iprintf(" \n"); iprintf(" Original region: "); if (regionChar == 'J') {