Put Ying Xiong Chuan Qi to mapper 224
As far as I can tell, Mapper 74 and 224 are close to identical, they share the same base mapper (Waixing type I in Nestopia) But for future reference let's distinguish mapper 224 here.
This commit is contained in:
parent
3adb129e2c
commit
9b3bd8e94e
|
@ -16,12 +16,14 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
{
|
||||
case "MAPPER074":
|
||||
break;
|
||||
case "MAPPER224":
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
VRAM = new byte[2048];
|
||||
//if (Cart.chr_size == 0)
|
||||
// throw new Exception("Mapper074 carts MUST have chr rom!");
|
||||
if (Cart.chr_size == 0 && Cart.board_type == "MAPPER074")
|
||||
throw new Exception("Mapper074 carts MUST have chr rom!");
|
||||
BaseSetup();
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue