Skip to content

Commit fe5b6ef

Browse files
committed
Bug fix for nds-bootstrap
1 parent 96e6eea commit fe5b6ef

File tree

3 files changed

+10
-15
lines changed

3 files changed

+10
-15
lines changed

7zfile/_nds/bootstrap.nds

0 Bytes
Binary file not shown.

7zfile/_nds/nds-bootstrap.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ ARM7_DONOR_PATH =
55
USE_ARM7_DONOR = 1
66
BOOTSTRAP_PATH = sd:/_nds/bootstrap.nds
77
ROMREAD_LED = 1
8-
SOFT_RESET = 0
98
BOOST_CPU = 0
109
BOOST_VRAM = 0
1110
BOOTSPLASH = 0

titleandsettings/arm9/source/main.cpp

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ int main(int argc, char **argv) {
207207

208208
char vertext[12];
209209
// snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); // Doesn't work :(
210-
snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", 1, 4, 0);
210+
snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", 1, 4, 1);
211211

212212
if (showlogo) {
213213
graphicsInit();
@@ -475,11 +475,11 @@ int main(int argc, char **argv) {
475475
else
476476
printSmall(false, 224, 120, "Off");
477477

478-
printSmall(false, 12, 128, "Return with POWER button");
479-
if(bstrap_softReset)
480-
printSmall(false, 224, 128, "On");
481-
else
482-
printSmall(false, 224, 128, "Off");
478+
// printSmall(false, 12, 128, "Return with POWER button");
479+
// if(bstrap_softReset)
480+
// printSmall(false, 224, 128, "On");
481+
// else
482+
// printSmall(false, 224, 128, "Off");
483483

484484

485485
if (settingscursor == 0) {
@@ -511,12 +511,12 @@ int main(int argc, char **argv) {
511511
} else if (settingscursor == 7) {
512512
printSmall(false, 4, 156, "Enable or disable use of");
513513
printSmall(false, 4, 164, "donor ROM.");
514-
} else if (settingscursor == 8) {
514+
} /* else if (settingscursor == 8) {
515515
printSmall(false, 4, 148, "If you have Zelda Four Swords");
516516
printSmall(false, 4, 156, "with 4swordshax installed,");
517517
printSmall(false, 4, 164, "press POWER while playing a ROM");
518518
printSmall(false, 4, 172, "to return to the SRLoader menu.");
519-
}
519+
} */
520520

521521

522522

@@ -594,10 +594,6 @@ int main(int argc, char **argv) {
594594
bstrap_useArm7Donor = !bstrap_useArm7Donor;
595595
menuprinted = false;
596596
break;
597-
case 8:
598-
bstrap_softReset = !bstrap_softReset;
599-
menuprinted = false;
600-
break;
601597
}
602598
}
603599

@@ -618,8 +614,8 @@ int main(int argc, char **argv) {
618614
break;
619615
}
620616

621-
if (settingscursor > 8) settingscursor = 0;
622-
else if (settingscursor < 0) settingscursor = 8;
617+
if (settingscursor > 7) settingscursor = 0;
618+
else if (settingscursor < 0) settingscursor = 7;
623619
}
624620

625621
} else {

0 commit comments

Comments
 (0)