Hex Editor - Find - implement multi-select
This commit is contained in:
parent
6156188676
commit
985af6f34c
|
@ -1477,7 +1477,12 @@ namespace BizHawk.MultiClient
|
||||||
prompt.HexOnly = true;
|
prompt.HexOnly = true;
|
||||||
if (addressHighlighted > 0)
|
if (addressHighlighted > 0)
|
||||||
{
|
{
|
||||||
prompt.SetInitialValue(ValueString(GetHighlightedAddress()));
|
string values = ValueString(GetHighlightedAddress());
|
||||||
|
foreach (int x in SecondaryHighlightedAddresses)
|
||||||
|
{
|
||||||
|
values += ValueString(x);
|
||||||
|
}
|
||||||
|
prompt.SetInitialValue(values);
|
||||||
}
|
}
|
||||||
prompt.ShowDialog();
|
prompt.ShowDialog();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue