mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-31 12:50:52 +00:00
Made GZDB output 64-bit in the title
This commit is contained in:
parent
d9dfab64a0
commit
000ecfbab0
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue