From 55eef165aaac6643e269c5b0d697507a27d7056d Mon Sep 17 00:00:00 2001 From: hegyak Date: Sun, 20 Dec 2015 12:44:50 -0800 Subject: [PATCH] Add one to the VersionInfo.cs --- BizHawk.Client.EmuHawk/tools/GameShark.cs | 6 ++++-- Version/VersionInfo.cs | 6 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/GameShark.cs b/BizHawk.Client.EmuHawk/tools/GameShark.cs index 0d8ceba08e..168e563d32 100644 --- a/BizHawk.Client.EmuHawk/tools/GameShark.cs +++ b/BizHawk.Client.EmuHawk/tools/GameShark.cs @@ -394,12 +394,14 @@ namespace BizHawk.Client.EmuHawk //TODO: //Determine how to make Action Replay Max Code detection a thing? //DEADFACE means, "NEW Decryption Keys ahead." - if (txtCheat.Text == "DEADFACE") + + if (txtCheat.Text.Contains("DEADFACE") == true) { MessageBox.Show("Sorry, this tool does not support DEADFACE codes.", "Tool error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } - if (Slider == true) + + if (Slider == true) { secondSlide = txtCheat.Text; GBASlide(); diff --git a/Version/VersionInfo.cs b/Version/VersionInfo.cs index d795488a31..bed9f095ee 100644 --- a/Version/VersionInfo.cs +++ b/Version/VersionInfo.cs @@ -1,7 +1,7 @@ static class VersionInfo { - public const string MAINVERSION = "1.11.3"; // Use numbers only or the new version notification won't work - public static readonly string RELEASEDATE = "October 14, 2015"; + public const string MAINVERSION = "1.11.4"; // Use numbers only or the new version notification won't work + public static readonly string RELEASEDATE = "December 25, 2015"; public static readonly bool DeveloperBuild = true; public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; @@ -9,4 +9,4 @@ static class VersionInfo { return DeveloperBuild ? ("GIT " + SubWCRev.GIT_BRANCH + "#" + SubWCRev.GIT_SHORTHASH) : ("Version " + MAINVERSION); } -} +}