We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6429b35 commit f88eca3Copy full SHA for f88eca3
arm9/source/main.cpp
@@ -363,6 +363,7 @@ int main( int argc, char **argv) {
363
iprintf("\n");
364
if ((cursorPosition == 0) && (optionCount > 2)) {
365
iprintf(" Change the SDNAND region.\n");
366
+ iprintf(" System settings will be reset.\n");
367
iprintf(" \n");
368
iprintf(" Original region: ");
369
if (regionChar == 'J') {
@@ -476,6 +477,9 @@ int main( int argc, char **argv) {
476
477
fwrite(&newRegion, 1, 1, f_hwinfoS);
478
fclose(f_hwinfoS);
479
}
480
+ // Reset system settings to work around touch inputs not working
481
+ remove("sd:/shared1/TWLCFG0.dat");
482
+ remove("sd:/shared1/TWLCFG1.dat");
483
484
485
// Create dummy file
0 commit comments