show debug vs release mode in About Box

This commit is contained in:
goyuken 2013-06-20 00:16:51 +00:00
parent 1073e184d3
commit a68be5f014
1 changed files with 5 additions and 1 deletions

View File

@ -159,7 +159,11 @@ namespace BizHawk.MultiClient
private void AboutBox_Load(object sender, EventArgs e)
{
Text = "BizHawk Interim Build SVN r" + SubWCRev.SVN_REV;
#if DEBUG
Text = "BizHawk Interim Build (DEBUG MODE) SVN r" + SubWCRev.SVN_REV;
#else
Text = "BizHawk Interim Build (RELEASE MODE) SVN r" + SubWCRev.SVN_REV;
#endif
}
private void Close_Click(object sender, EventArgs e)