From ff31141f7ece64fa84e26b730225aa3757d0e334 Mon Sep 17 00:00:00 2001 From: sanni Date: Fri, 7 Apr 2023 12:49:20 +0200 Subject: [PATCH] Fix Derby Stallion 96 --- Cart_Reader/SNES.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cart_Reader/SNES.ino b/Cart_Reader/SNES.ino index 0231062..2728a4b 100644 --- a/Cart_Reader/SNES.ino +++ b/Cart_Reader/SNES.ino @@ -1295,7 +1295,7 @@ void readROM_SNES() { } //Dump Derby Stallion '96 (Japan) Actual Size is 24Mb - if ((romType == LO) && (numBanks == 128) && (strcmp("CC86", checksumStr) == 0)) { + if ((romType == LO) && (numBanks == 96) && (strcmp("CC86", 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 @@ -2240,4 +2240,4 @@ boolean eraseSRAM(byte b) { //****************************************** // End of File -//****************************************** \ No newline at end of file +//******************************************