Debugger - a fix to last commit

This commit is contained in:
adelikat 2014-12-23 03:13:13 +00:00
parent 7fb92d28fc
commit feb7f4c4f3
1 changed files with 5 additions and 2 deletions

View File

@ -84,12 +84,15 @@ namespace BizHawk.Client.EmuHawk
}
private void DisassemblerView_QueryItemBkColor(int index, int column, ref Color color)
{
if (DisassemblyLines.Any() && index < DisassemblyLines.Count)
{
if (DisassemblyLines[index].Address == PC)
{
color = Color.LightCyan;
}
}
}
private void DecrementCurrentAddress()
{