From a9bddb92e3152f58df6242f1f773fc8d9421af79 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Mon, 25 Nov 2024 19:27:51 -0800 Subject: [PATCH] GBA Unlicensed Carts: Detect "SPIDERMAN3" header too --- src/gba/cart/unlicensed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gba/cart/unlicensed.c b/src/gba/cart/unlicensed.c index a286850e5..a0f18fc5e 100644 --- a/src/gba/cart/unlicensed.c +++ b/src/gba/cart/unlicensed.c @@ -42,7 +42,7 @@ void GBAUnlCartDetect(struct GBA* gba) { return; } - if (memcmp(&cart->id, "AXVJ01", 6) == 0) { + if (memcmp(&cart->id, "AXVJ01", 6) == 0 || memcmp(&cart->id, "BI3P52", 6) == 0) { if (gba->romVf && gba->romVf->size(gba->romVf) >= 0x04000000) { // Bootleg multicart // TODO: Identify a bit more precisely