From a5a4db4a6da7cbc6fb29f496c310f5e58d7b73b2 Mon Sep 17 00:00:00 2001 From: goyuken Date: Thu, 2 Jan 2014 20:42:31 +0000 Subject: [PATCH] NES XML minifix shouldn't change anything --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs index e05e78f8cb..b471de51e9 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs @@ -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;