Add one to the VersionInfo.cs
This commit is contained in:
parent
a77a224f9b
commit
55eef165aa
|
@ -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();
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue