From 000ecfbab0619305469bb4ed46f452414aae24b0 Mon Sep 17 00:00:00 2001 From: ZZYZX <zzyzx@virtual> Date: Sat, 14 Apr 2018 18:15:11 +0300 Subject: [PATCH] Made GZDB output 64-bit in the title --- Source/Core/Windows/MainForm.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Windows/MainForm.cs b/Source/Core/Windows/MainForm.cs index 7410c9559..d9f042207 100755 --- a/Source/Core/Windows/MainForm.cs +++ b/Source/Core/Windows/MainForm.cs @@ -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) -- GitLab