Dedup in `CheatEdit.GetCheat`

This commit is contained in:
YoshiRulz 2022-11-02 01:05:12 +10:00
parent 414c21609b
commit 3e79e68d1d
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 7 additions and 6 deletions

View File

@ -299,11 +299,11 @@ namespace BizHawk.Client.EmuHawk
if (address < domain.Size)
{
var watch = Watch.GenerateWatch(
MemoryDomains[DomainDropDown.SelectedItem.ToString()],
AddressBox.ToRawInt().Value,
domain,
address: address,
GetCurrentSize(),
Watch.StringToDisplayType(DisplayTypeDropDown.SelectedItem.ToString()),
BigEndianCheckBox.Checked,
bigEndian: BigEndianCheckBox.Checked,
NameBox.Text);
var comparisonType = CompareTypeDropDown.SelectedItem.ToString() switch
@ -318,11 +318,12 @@ namespace BizHawk.Client.EmuHawk
_ => Cheat.CompareType.None
};
var compare = CompareBox.ToRawInt();
return new Cheat(
watch,
ValueBox.ToRawInt().Value,
CompareBox.ToRawInt() == null ? null : (int?)CompareBox.ToRawInt().Value,
true,
value: ValueBox.ToRawInt().Value,
compare: compare,
enabled: true,
comparisonType);
}