Hex Editor - fix ability to highlight past the end of a domain
This commit is contained in:
parent
fc8cb97ce3
commit
f15a1bc36b
|
@ -933,7 +933,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void DoShiftClick()
|
private void DoShiftClick()
|
||||||
{
|
{
|
||||||
if (_addressOver >= 0)
|
if (_addressOver >= 0 && _addressOver < _domain.Size)
|
||||||
{
|
{
|
||||||
_secondaryHighlightedAddresses.Clear();
|
_secondaryHighlightedAddresses.Clear();
|
||||||
if (_addressOver < _addressHighlighted)
|
if (_addressOver < _addressHighlighted)
|
||||||
|
|
Loading…
Reference in New Issue