if we're going to have an alt_about_image we might as well activate it sometime.
This commit is contained in:
parent
f43859f421
commit
9fccae56de
|
@ -164,10 +164,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
#else
|
#else
|
||||||
Text = "BizHawk Developer Build (RELEASE MODE) SVN r" + SubWCRev.SVN_REV;
|
Text = "BizHawk Developer Build (RELEASE MODE) SVN r" + SubWCRev.SVN_REV;
|
||||||
#endif
|
#endif
|
||||||
if (DateTime.Now > DateTime.Parse("12/17/2013") && DateTime.Now <= DateTime.Parse("12/25/2013"))
|
if (DateTime.Now.Month == 12)
|
||||||
{
|
if (DateTime.Now.Day > 17 && DateTime.Now.Day <= 25)
|
||||||
pictureBox1.Image = Properties.Resources.alt_about_image;
|
{
|
||||||
}
|
pictureBox1.Image = Properties.Resources.alt_about_image;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Close_Click(object sender, EventArgs e)
|
private void Close_Click(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in New Issue