From a870b143aaf02e40d764e98a3da28943fe8fef9f Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 29 Feb 2020 09:17:30 -0600 Subject: [PATCH] cleanup --- BizHawk.Client.EmuHawk/tools/GameShark.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/GameShark.cs b/BizHawk.Client.EmuHawk/tools/GameShark.cs index eb3fe4fd4b..ad175a42b0 100644 --- a/BizHawk.Client.EmuHawk/tools/GameShark.cs +++ b/BizHawk.Client.EmuHawk/tools/GameShark.cs @@ -91,7 +91,7 @@ namespace BizHawk.Client.EmuHawk N64(); break; case "NES": - Nes(); + Nes(_singleCheat); break; case "PSX": // This determines what kind of Code we have @@ -2341,18 +2341,18 @@ namespace BizHawk.Client.EmuHawk } } - private void Nes() + private void Nes(string cheat) { - if (_singleCheat.Length != 6 && _singleCheat.Length != 8) + if (cheat.Length != 6 && cheat.Length != 8) { MessageBox.Show("Game Genie codes need to be six or eight characters in length.", "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } - var decoder = new NesGameGenieDecoder(_singleCheat); + var decoder = new NesGameGenieDecoder(cheat); try { - var description = _singleCheat; + var description = cheat; if (!string.IsNullOrWhiteSpace(txtDescription.Text)) { description = txtDescription.Text;