if we're going to have an alt_about_image we might as well activate it sometime.

This commit is contained in:
zeromus 2014-06-21 06:43:04 +00:00
parent f43859f421
commit 9fccae56de
1 changed files with 5 additions and 4 deletions

View File

@ -164,10 +164,11 @@ namespace BizHawk.Client.EmuHawk
#else
Text = "BizHawk Developer Build (RELEASE MODE) SVN r" + SubWCRev.SVN_REV;
#endif
if (DateTime.Now > DateTime.Parse("12/17/2013") && DateTime.Now <= DateTime.Parse("12/25/2013"))
{
pictureBox1.Image = Properties.Resources.alt_about_image;
}
if (DateTime.Now.Month == 12)
if (DateTime.Now.Day > 17 && DateTime.Now.Day <= 25)
{
pictureBox1.Image = Properties.Resources.alt_about_image;
}
}
private void Close_Click(object sender, EventArgs e)