--- 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); } |