Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater/Docking/UI/UIMemoryViewer.cs 2012/06/05 00:19:36 281 +++ trunk/RomCheater/Docking/UI/UIMemoryViewer.cs 2012/06/05 01:19:54 282 @@ -87,8 +87,8 @@ public IConfigPlugin AcceptedPlugin { get; set; } #endregion #region IAcceptsMemoryRange members - public int MemoryStart { get { return 0; } } - public uint MemorySize { get { return int.MaxValue; } } + public int MemoryStart { get { return MemorySizeConstants.MinimumAddress; } } + public uint MemorySize { get { return MemorySizeConstants.MaximumAddress; } } #endregion public void GotoTop() { this.CURRENT_TOP_ADDR = 0; } public void GotoBottom() { uint size = (uint)MemorySize; this.CURRENT_TOP_ADDR = (int)((size - 1) - max_ram_view); }
ViewVC Help | |
Powered by ViewVC 1.1.22 |