--- trunk/RomCheater/Docking/FloatingMemorySearcher.cs 2013/06/08 06:48:29 620 +++ trunk/RomCheater/Docking/FloatingMemorySearcher.cs 2013/06/08 08:27:24 621 @@ -65,7 +65,7 @@ namespace RomCheater.Docking const uint MEM_1B = 0x1; const uint MEM_1KB = 0x400; const uint MEM_1MB = MEM_1KB * MEM_1KB; // 1024 * 1024 = 1MB - const uint MEM_CHUNK_SIZE_MB = MEM_1MB * 256; /* MEM_1MB * N = N in megabytes (in bytes) */ + const uint MEM_CHUNK_SIZE_MB = MEM_1MB * 64; /* MEM_1MB * N = N in megabytes (in bytes) */ const uint MEM_CHUNK_SIZE_KB = MEM_1KB * 64; /* MEM_1KB * N = N in kilobytes (in bytes) */ const uint MEM_CHUNK_SIZE_B = MEM_1B * 64; /* MEM_1B * N = N in bytes (in bytes) - duh! a little redundant, don't you think */ |