Debugger: Fixed breakpoint highlighting when BP is on current statement
This commit is contained in:
parent
fb5bf36c91
commit
62a10de12a
1 changed files with 1 additions and 1 deletions
|
@ -836,7 +836,7 @@ namespace Mesen.GUI.Debugger
|
|||
symbol = LineSymbol.CircleOutline;
|
||||
}
|
||||
|
||||
if(breakpoint.Address == (UInt32)(_code._currentActiveAddress.HasValue ? (int)_code._currentActiveAddress.Value : -1)) {
|
||||
if(_code._currentActiveAddress.HasValue && breakpoint.Matches((int)_code._currentActiveAddress.Value)) {
|
||||
fgColor = Color.Black;
|
||||
bgColor = Color.Yellow;
|
||||
symbol |= LineSymbol.Arrow;
|
||||
|
|
Loading…
Add table
Reference in a new issue