Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater/Docking/FloatingMemoryView.cs 2012/06/03 16:09:05 249 +++ trunk/RomCheater/Docking/FloatingMemoryView.cs 2012/06/03 16:50:16 256 @@ -35,11 +35,11 @@ #endregion #region IAcceptsMemoryRange members private int MemoryStart { get { return MemView.MemoryStart; } } - private int MemorySize { get { return MemView.MemorySize; } } + private uint MemorySize { get { return MemView.MemorySize; } } #endregion #region IAcceptsExternalMemoryAddress - public bool AcceptExternalMemoryAddress(uint address) + public bool AcceptExternalMemoryAddress(int address) { if (!((MemoryStart <= address) && (address <= (MemoryStart + MemorySize)))) { return false; } MemView.GotoAddress(address);
ViewVC Help | |
Powered by ViewVC 1.1.22 |