diff --git a/src/BizHawk.Client.Common/tools/Cheat.cs b/src/BizHawk.Client.Common/tools/Cheat.cs index 06fa4ad3a1..eb8110e867 100644 --- a/src/BizHawk.Client.Common/tools/Cheat.cs +++ b/src/BizHawk.Client.Common/tools/Cheat.cs @@ -157,11 +157,6 @@ namespace BizHawk.Client.Common } } - private string GetStringForPulse(int val) => - _watch.Type == DisplayType.Hex - ? val.ToString("X8") - : val.ToString(); - public void Pulse() { if (!IsSeparator && _enabled) @@ -203,11 +198,6 @@ namespace BizHawk.Client.Common return true; } - private void PokeByte() - { - _watch.Poke(GetStringForPulse(_val)); - } - public bool Contains(long addr) { switch (_watch.Size)