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 205 by william, Thu May 31 09:19:16 2012 UTC vs.
Revision 206 by william, Thu May 31 09:31:57 2012 UTC

# Line 15 | Line 15 | namespace RomCheater.Docking.UI
15   {
16      public partial class UIMemoryViewer : UserControl, IProcessConfig, IAcceptsPlugin<IConfigPlugin>//, IAcceptsMemoryRange
17      {
18        private bool first_load = true;
18          public UIMemoryViewer()
19          {
20              InitializeComponent();
# Line 78 | Line 77 | namespace RomCheater.Docking.UI
77          public IConfigPlugin AcceptedPlugin { get; set; }
78          #endregion
79          #region IAcceptsMemoryRange members
80 <        private uint MemoryStart { get { return 0; } }
81 <        private uint MemorySize { get { return int.MaxValue; } }
80 >        public uint MemoryStart { get { return 0; } }
81 >        public uint MemorySize { get { return int.MaxValue; } }
82          #endregion
83          public void GotoTop() { this.CURRENT_TOP_ADDR = 0; }
84          public void GotoBottom() { uint size = MemorySize; this.CURRENT_TOP_ADDR = (uint)((size - 1) - max_ram_view); }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines