Shortcuts for the disassembly view, step over extended, fixes

This commit is contained in:
Kingcom
2013-06-26 21:49:15 +02:00
parent 4eb458ede5
commit 26c4f57691
6 changed files with 138 additions and 8 deletions

View File

@@ -77,6 +77,7 @@ void CBreakPoints::RemoveBreakPoint(u32 _iAddress)
{
m_iBreakPoints.remove(m_iBreakPoints[i]);
InvalidateJit(_iAddress);
host->UpdateDisassembly(); // redraw in order to not show the breakpoint anymore
break;
}
}
@@ -130,6 +131,7 @@ void CBreakPoints::AddBreakPoint(u32 _iAddress, bool temp)
m_iBreakPoints.insert(pt);
InvalidateJit(_iAddress);
host->UpdateDisassembly(); // redraw in order to show the breakpoint
}
}