Highlighting a cheat now updates the comparison type drop down to reflect the appropriate value

This commit is contained in:
Adam Sturge 2016-02-08 21:06:13 -08:00
parent c59f1c1761
commit 447d312a5c
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ namespace BizHawk.Client.EmuHawk
AddressBox.Text = _cheat.AddressStr;
ValueBox.Text = _cheat.ValueStr;
CompareBox.Text = _cheat.Compare.HasValue ? _cheat.CompareStr : String.Empty;
CompareTypeDropDown.SelectedIndex = (int)_cheat.ComparisonType;
CheckFormState();
if (!_cheat.Compare.HasValue)