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

--- trunk/RomCheater/Docking/UI/UIMemoryViewer.cs	2012/05/31 09:19:16	205
+++ trunk/RomCheater/Docking/UI/UIMemoryViewer.cs	2012/05/31 09:31:57	206
@@ -15,7 +15,6 @@ namespace RomCheater.Docking.UI
 {
     public partial class UIMemoryViewer : UserControl, IProcessConfig, IAcceptsPlugin<IConfigPlugin>//, IAcceptsMemoryRange
     {
-        private bool first_load = true;
         public UIMemoryViewer()
         {
             InitializeComponent();
@@ -78,8 +77,8 @@ namespace RomCheater.Docking.UI
         public IConfigPlugin AcceptedPlugin { get; set; }
         #endregion
         #region IAcceptsMemoryRange members
-        private uint MemoryStart { get { return 0; } }
-        private uint MemorySize { get { return int.MaxValue; } }
+        public uint MemoryStart { get { return 0; } }
+        public uint MemorySize { get { return int.MaxValue; } }
         #endregion
         public void GotoTop() { this.CURRENT_TOP_ADDR = 0; }
         public void GotoBottom() { uint size = MemorySize; this.CURRENT_TOP_ADDR = (uint)((size - 1) - max_ram_view); }