add svn revision number to about box on release builds

This commit is contained in:
adelikat 2014-05-08 18:35:50 +00:00
parent f6f65ca128
commit 2c0cd80071
1 changed files with 2 additions and 1 deletions

View File

@ -29,8 +29,9 @@ namespace BizHawk.Client.EmuHawk
}
else
{
Text = "Version " + VersionInfo.MAINVERSION;
Text = "Version " + VersionInfo.MAINVERSION + " (SVN " + SubWCRev.SVN_REV + ")";
}
VersionLabel.Text = "Version " + VersionInfo.MAINVERSION + " " + VersionInfo.RELEASEDATE;
}