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

Comparing trunk/RomCheater/Docking/UI/UIMemoryViewer.cs (file contents):
Revision 408 by william, Wed Jun 20 13:24:49 2012 UTC vs.
Revision 409 by william, Thu Jun 21 20:02:40 2012 UTC

# Line 297 | Line 297 | namespace RomCheater.Docking.UI
297          private void UpdateMemroyView() { this.UpdateMemroyView(this.CURRENT_TOP_ADDR); }
298          private void UpdateMemroyView(uint address)
299          {
300 +            bool SearchInProgress = false;
301 +            if (this.AcceptedPlugin != null) { SearchInProgress = this.AcceptedPlugin.SearchInProgess; }
302 +            if (SearchInProgress) return;
303              try
304              {
305                  if (AcceptedProcess == null) { return; }
# Line 334 | Line 337 | namespace RomCheater.Docking.UI
337                                      byte t;
338                                      if (!gmp.ReadMemory(current_real_address, out t)) { ascii_value = '?'; }
339                                      gmp.CloseProvider();
340 <                                }
340 >                                }                                
341                                  builder.Append(ascii_value.ToString());
342                              }
343                              builder.AppendLine();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines