diff options
author | But Thou Must <[email protected]> | 2023-09-21 18:39:18 -0400 |
---|---|---|
committer | But Thou Must <[email protected]> | 2023-09-21 18:39:18 -0400 |
commit | c88978f5ea1802d3ed0a3515b9af5b6513fc16ad (patch) | |
tree | 0b9d857e9a2b711f57fdbe5ebaad24f0407f45eb | |
parent | 4ef394aadaa944fabc61e784d2e16dc7de204112 (diff) | |
download | cartreader-c88978f5ea1802d3ed0a3515b9af5b6513fc16ad.tar.gz cartreader-c88978f5ea1802d3ed0a3515b9af5b6513fc16ad.zip |
SNES.ino: Fix dumping Sound Novel Tsukuru (Japan) with same fix as for Derby Stallion '96 (Japan)
-rw-r--r-- | Cart_Reader/SNES.ino | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Cart_Reader/SNES.ino b/Cart_Reader/SNES.ino index 8e61acb..4b3ca1a 100644 --- a/Cart_Reader/SNES.ino +++ b/Cart_Reader/SNES.ino @@ -1300,8 +1300,8 @@ void readROM_SNES() { print_FatalError(create_file_STR); } - //Dump Derby Stallion '96 (Japan) Actual Size is 24Mb - if ((romType == LO) && (numBanks == 96) && (strcmp("CC86", checksumStr) == 0)) { + //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) { // 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 |