--- trunk/RomCheater/MemorySizeConstants.cs 2012/06/08 04:23:30 348 +++ trunk/RomCheater/MemorySizeConstants.cs 2012/06/08 04:39:37 349 @@ -8,6 +8,9 @@ namespace RomCheater public static class MemorySizeConstants { public const int MinimumAddress = 0x00000000; - public const int MaximumAddress = int.MaxValue - 0x38; // any more than this, for byte arrays, causes out of memory exceptions) + public const int MaximumAddress = int.MaxValue; + + public const int MinimumSearchAddress = 0x00400000; + public const int MaximumSearchAddress = 0x20000000; } } |