--- trunk/RomCheater/Docking/MemorySearch/ResultItemState.cs 2013/06/06 08:18:44 578 +++ trunk/RomCheater/Docking/MemorySearch/ResultItemState.cs 2013/06/06 08:21:11 579 @@ -74,10 +74,10 @@ namespace RomCheater.Docking.MemorySearc public ResultItemState(string address, SearchDataTypes bitsize, bool IsUnsigned, IAcceptsProcessAndConfig pconfig) : this(AVPIconKeys.NOTFROZEN, address, "", false.ToString(), bitsize, IsUnsigned, pconfig) { - int Address = 0; - Address = Convert.ToInt32(this.Address, 16); - int bytesReadSize; - uint bytesToRead = 0; + ulong Address = 0; + Address = Convert.ToUInt64(this.Address, 16); + ulong bytesReadSize; + ulong bytesToRead = 0; switch (bitsize) { case SearchDataTypes._8bits: |