dont call int.parse on a long

This commit is contained in:
beirich 2014-04-08 01:08:47 +00:00
parent 296ce8fcfc
commit cc8308495d
1 changed files with 1 additions and 1 deletions

View File

@ -1021,7 +1021,7 @@ namespace BizHawk.Common
{ {
if (Present(name)) if (Present(name))
{ {
val = int.Parse(Item(name).Replace("0x", ""), NumberStyles.HexNumber); val = long.Parse(Item(name).Replace("0x", ""), NumberStyles.HexNumber);
} }
} }