Skip to content

Commit

Permalink
Fix Xplorer_N64 dump
Browse files Browse the repository at this point in the history
  • Loading branch information
PsyK0p4T authored Aug 18, 2023
1 parent a969a93 commit 8d7fc3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cart_Reader/N64.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4343,7 +4343,7 @@ void backupXplorer_N64() {
print_FatalError(sd_error_STR);
}

for (unsigned long currByte = 0x10400000; currByte < 0x1043FFFF; currByte += 512) {
for (unsigned long currByte = 0x10400000; currByte <= 0x1043FFFF; currByte += 512) {
// Blink led
if (currByte % 16384 == 0)
blinkLED();
Expand Down

0 comments on commit 8d7fc3a

Please sign in to comment.