NES XML minifix shouldn't change anything
This commit is contained in:
parent
b67e97f9aa
commit
a5a4db4a6d
|
@ -594,7 +594,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
{
|
||||
currCart.board_type = xmlreader.GetAttribute("type");
|
||||
currCart.pcb = xmlreader.GetAttribute("pcb");
|
||||
int mapper = byte.Parse(xmlreader.GetAttribute("mapper"));
|
||||
int mapper = int.Parse(xmlreader.GetAttribute("mapper"));
|
||||
if (validate && mapper > 255) throw new Exception("didnt expect mapper>255!");
|
||||
currCart.mapper = (byte)mapper;
|
||||
state = 3;
|
||||
|
|
Loading…
Reference in New Issue