oops, fix a logic error in HexTextBox, fixes a number of bugs such as losing the address when editing a Ram watch entry
This commit is contained in:
parent
e98da5856f
commit
2586a04498
|
@ -147,11 +147,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (val.HasValue)
|
||||
{
|
||||
Text = String.Empty;
|
||||
Text = String.Format(_addressFormatStr, val);
|
||||
}
|
||||
else
|
||||
{
|
||||
Text = String.Format(_addressFormatStr, val);
|
||||
Text = String.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue