show debug vs release mode in About Box
This commit is contained in:
parent
1073e184d3
commit
a68be5f014
|
@ -159,7 +159,11 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
private void AboutBox_Load(object sender, EventArgs e)
|
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)
|
private void Close_Click(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in New Issue