From c353451e319a1044fa1070cb71708ca13a3ce5b9 Mon Sep 17 00:00:00 2001 From: sanni Date: Mon, 22 Aug 2022 20:50:52 +0200 Subject: [PATCH] Forgot about Tales --- Cart_Reader/SNES.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cart_Reader/SNES.ino b/Cart_Reader/SNES.ino index 68fe9e4..2811dc6 100644 --- a/Cart_Reader/SNES.ino +++ b/Cart_Reader/SNES.ino @@ -859,7 +859,7 @@ void checkAltConf(char crcStr[9]) { // Some games have the same checksum, so compare CRC32 of header area with database too if (strcmp(tempStr3, crcStr) == 0) { // Game found, check if ROM sizes differ but only change ROM size if non- standard size found in database, else trust the header to be right and the database to be wrong - if (((romSize != romSize2) || (numBanks != numBanks2)) && ((romSize2 == 10) || (romSize2 == 12) || (romSize2 == 20) || (romSize2 == 24))) { + if (((romSize != romSize2) || (numBanks != numBanks2)) && ((romSize2 == 10) || (romSize2 == 12) || (romSize2 == 20) || (romSize2 == 24) || (romSize2 == 48))) { // Correct size romSize = romSize2; numBanks = numBanks2;