From 0d95a0cd7fba7de489a699b387c31c03268d362a Mon Sep 17 00:00:00 2001 From: Squall Leonhart Date: Thu, 10 Oct 2024 18:34:31 +1100 Subject: [PATCH] quick dirty possible fix for MBC5 roms of 4 and 8MB size. (#2442) --- Source/nragev20/GBCart.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/nragev20/GBCart.cpp b/Source/nragev20/GBCart.cpp index 5cdf65108..3ca6a26e4 100644 --- a/Source/nragev20/GBCart.cpp +++ b/Source/nragev20/GBCart.cpp @@ -346,6 +346,12 @@ bool LoadCart(LPGBCART Cart, LPCTSTR RomFileName, LPCTSTR RamFileName, LPCTSTR T case 0x06: Cart->iNumRomBanks = 128; break; + case 0x07: + Cart->iNumRomBanks = 256; + break; + case 0x08: + Cart->iNumRomBanks = 512; + break; case 0x52: Cart->iNumRomBanks = 72; break;