Debugger: Allow labels to be created on the last valid byte of the range
This commit is contained in:
parent
031f320d44
commit
d5b4d210ba
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ namespace Mesen.GUI.Debugger
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
address < maxAddress &&
|
address <= maxAddress &&
|
||||||
(sameLabel == null || sameLabel == _originalLabel)
|
(sameLabel == null || sameLabel == _originalLabel)
|
||||||
&& (sameAddress == null || sameAddress == _originalLabel)
|
&& (sameAddress == null || sameAddress == _originalLabel)
|
||||||
&& (_originalLabel != null || txtLabel.Text.Length > 0 || txtComment.Text.Length > 0)
|
&& (_originalLabel != null || txtLabel.Text.Length > 0 || txtComment.Text.Length > 0)
|
||||||
|
|
Loading…
Add table
Reference in a new issue