Skip to content

Commit

Permalink
Update SNES.ino
Browse files Browse the repository at this point in the history
Avoids a compilation warning
  • Loading branch information
PsyK0p4T authored Nov 20, 2023
1 parent 654686c commit a55aa7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cart_Reader/SNES.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ void readROM_SNES() {
}

//Dump Derby Stallion '96 (Japan) and Sound Novel Tsukuru (Japan) - Actual Size is 24Mb
if ((romType == LO) && (numBanks == 96) && (strcmp("CC86", checksumStr) == 0) || strcmp("A77B", checksumStr) == 0) {
if ((romType == LO) && (numBanks == 96) && ((strcmp("CC86", checksumStr) == 0) || (strcmp("A77B", checksumStr) == 0))) {
// Read Banks 0x00-0x3F for the 1st/2nd MB
for (int currBank = 0; currBank < 64; currBank++) {
// Dump the bytes to SD 512B at a time
Expand Down

0 comments on commit a55aa7b

Please sign in to comment.