From 1156f312a9acdda1e9aff9d3bd065f73ffc85af9 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 29 Feb 2020 09:47:59 -0600 Subject: [PATCH] cleanup with a helper method --- BizHawk.Client.EmuHawk/tools/GameShark.cs | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/GameShark.cs b/BizHawk.Client.EmuHawk/tools/GameShark.cs index ef7e0d9ee2..2b75ce9c74 100644 --- a/BizHawk.Client.EmuHawk/tools/GameShark.cs +++ b/BizHawk.Client.EmuHawk/tools/GameShark.cs @@ -2488,13 +2488,13 @@ namespace BizHawk.Client.EmuHawk if (_singleCheat.IndexOf(" ") != 8) { - MessageBox.Show("All Saturn GameShark Codes need to contain a space after the eighth character", "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + InputError("All Saturn GameShark Codes need to contain a space after the eighth character."); return; } if (_singleCheat.Length != 13) { - MessageBox.Show("All Saturn GameShark Cheats need to be 13 characters in length.", "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + InputError("All Saturn GameShark Cheats need to be 13 characters in length."); return; } @@ -2581,13 +2581,13 @@ namespace BizHawk.Client.EmuHawk // It's an Action Replay else if (cheat.Length != 9 && cheat.LastIndexOf("-") != 7) { - MessageBox.Show("All Master System Action Replay Codes need to be nine characters in length.", "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + InputError("All Master System Action Replay Codes need to be nine characters in length."); } // Game Genie else if (cheat.LastIndexOf("-") != 7 && cheat.IndexOf("-") != 3) { - MessageBox.Show("All Master System Game Genie Codes need to have a dash after the third character and seventh character.", "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + InputError("All Master System Game Genie Codes need to have a dash after the third character and seventh character."); } } @@ -2608,11 +2608,11 @@ namespace BizHawk.Client.EmuHawk } else if (cheat.Contains("-") && cheat.Length != 9) { - MessageBox.Show("Game Genie Codes need to be nine characters in length.", "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + InputError("Game Genie Codes need to be nine characters in length."); } else if (cheat.Length != 9 && cheat.Length != 8) { - MessageBox.Show("Pro Action Replay Codes need to be eight characters in length.", "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + InputError("Pro Action Replay Codes need to be eight characters in length."); } } @@ -2626,5 +2626,10 @@ namespace BizHawk.Client.EmuHawk txtCheat.Clear(); } } + + private void InputError(string message) + { + MessageBox.Show(message, "Input Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } } } \ No newline at end of file