From ecc937bab300463dcc41a7f2827e8d8b611d1d17 Mon Sep 17 00:00:00 2001 From: sanni Date: Tue, 30 Apr 2024 12:25:58 +0200 Subject: [PATCH] Fix romType for Yuyu no Quiz de GO!GO! https://github.com/sanni/cartreader/issues/922 --- Cart_Reader/SNES.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cart_Reader/SNES.ino b/Cart_Reader/SNES.ino index 89bb764..152654a 100644 --- a/Cart_Reader/SNES.ino +++ b/Cart_Reader/SNES.ino @@ -1006,6 +1006,8 @@ boolean checkcart_SNES() { romType = EX; // Check if ExHiROM } else if (romType == 0x3A) { romType = HI; // Check if SPC7110 + } else if (strcmp("3BB0", checksumStr) == 0) { // invalid romType due to too long ROM name (Yuyu no Quiz de GO!GO!) + romType = LO; } else { romType &= 1; // Must be LoROM or HiROM }