mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-03-01 15:21:21 +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()
|
private void UpdateTitle()
|
||||||
{
|
{
|
||||||
string programname = this.Text = Application.ProductName + " R" + General.ThisAssembly.GetName().Version.Revision;
|
string programname = this.Text = Application.ProductName + " R" + General.ThisAssembly.GetName().Version.Revision;
|
||||||
|
if (Environment.Is64BitProcess)
|
||||||
|
programname += " (64-bit)";
|
||||||
|
|
||||||
// Map opened?
|
// Map opened?
|
||||||
if (General.Map != null)
|
if (General.Map != null)
|
||||||
|
|
Loading…
Reference in a new issue