NES XML minifix shouldn't change anything

This commit is contained in:
goyuken 2014-01-02 20:42:31 +00:00
parent b67e97f9aa
commit a5a4db4a6d
1 changed files with 1 additions and 1 deletions

View File

@ -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;