Debugger - Tiny insignificant fixes

This commit is contained in:
scrimpeh 2015-06-27 13:03:24 +02:00
parent ee2d0aafdf
commit 716cf12f6a
1 changed files with 2 additions and 1 deletions
BizHawk.Client.EmuHawk/tools/Debugger

View File

@ -56,6 +56,7 @@ namespace BizHawk.Client.EmuHawk
if (match(breakpoint))
{
Remove(breakpoint);
removeCount++;
}
}
return removeCount;
@ -107,7 +108,7 @@ namespace BizHawk.Client.EmuHawk
public MemoryCallbackType Type { get; set; }
public string Name { get; set; }
public bool ReadOnly { get; set; }
internal bool ReadOnly { get; set; }
// Adds an existing callback
public Breakpoint(IDebuggable core, IMemoryCallback callback)