Made GZDB output 64-bit in the title

This commit is contained in:
ZZYZX 2018-04-14 18:15:11 +03:00
parent d9dfab64a0
commit 000ecfbab0

View file

@ -440,6 +440,8 @@ namespace CodeImp.DoomBuilder.Windows
private void UpdateTitle()
{
string programname = this.Text = Application.ProductName + " R" + General.ThisAssembly.GetName().Version.Revision;
if (Environment.Is64BitProcess)
programname += " (64-bit)";
// Map opened?
if (General.Map != null)