mirror of https://github.com/mgba-emu/mgba.git
GBA Unlicensed Carts: Detect "SPIDERMAN3" header too
This commit is contained in:
parent
f9851e6b75
commit
a9bddb92e3
|
@ -42,7 +42,7 @@ void GBAUnlCartDetect(struct GBA* gba) {
|
||||||
return;
|
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) {
|
if (gba->romVf && gba->romVf->size(gba->romVf) >= 0x04000000) {
|
||||||
// Bootleg multicart
|
// Bootleg multicart
|
||||||
// TODO: Identify a bit more precisely
|
// TODO: Identify a bit more precisely
|
||||||
|
|
Loading…
Reference in New Issue