ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/MemorySizeConstants.cs
(Generate patch)

Comparing trunk/RomCheater/MemorySizeConstants.cs (file contents):
Revision 377 by william, Sun Jun 10 00:47:58 2012 UTC vs.
Revision 378 by william, Tue Jun 19 07:56:36 2012 UTC

--- trunk/RomCheater/MemorySizeConstants.cs	2012/06/10 07:55:18	377
+++ trunk/RomCheater/MemorySizeConstants.cs	2012/06/19 07:56:36	378
@@ -7,10 +7,10 @@ namespace RomCheater
 {
     public static class MemorySizeConstants
     {
-        public const int MinimumAddress = 0x00000000;
-        public const int MaximumAddress = int.MaxValue;
+        public const uint MinimumAddress = 0x00000000;
+        public const uint MaximumAddress = int.MaxValue;
 
-        public const int MinimumSearchAddress = 0x00000000;
-        public const int MaximumSearchAddress = 0x05000000;
+        public const uint MinimumSearchAddress = 0x10000000;
+        public const uint MaximumSearchAddress = 0x87359400;
     }
 }