better check for callbacks availability in GenericDebugger.

This commit is contained in:
feos 2016-02-22 18:01:39 +03:00
parent 76626c3fd5
commit f1deb41e2a
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ namespace BizHawk.Client.EmuHawk.tools.Debugger
switch (column)
{
case 0:
text = string.Format("{0:X4}", Breakpoints[index].Address);
text = string.Format("{0:X}", Breakpoints[index].Address);
break;
case 1:
text = Breakpoints[index].Type.ToString();

View File

@ -36,7 +36,7 @@ namespace BizHawk.Client.EmuHawk
{
try
{
var result = Debuggable.MemoryCallbacks.HasReads;
var result = Debuggable.MemoryCallbacksAvailable();
return true;
}
catch (NotImplementedException)