Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater/Docking/FloatingRamDumperDialog.cs 2012/05/31 05:52:41 196 +++ trunk/RomCheater/Docking/FloatingRamDumperDialog.cs 2012/05/31 07:13:43 198 @@ -165,7 +165,7 @@ reader.ReadProcess = this.AcceptedProcess; reader.OpenProcess(); int bytesReadSize; - if (reader.DumpMemory(this.AcceptedProcess,filename, (uint)start, count, out bytesReadSize)) + if (reader.WriteProcessMemoryToFile(filename, (uint)start, count, out bytesReadSize)) { MessageBox.Show(string.Format("Succefully dumped memory (0x{0:x8}-0x{1:x8}) from pid=({3}) to file {2}", start, start + count, filename, string.Format("0x{0:x4} {1}.exe", this.AcceptedProcess.Id, AcceptedProcess.ProcessName)), "", MessageBoxButtons.OK, MessageBoxIcon.Information); }
ViewVC Help | |
Powered by ViewVC 1.1.22 |