From daee217431ef9c8d96dfe09e8f884c26e075cdee Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 17 Aug 2017 17:08:24 +0100 Subject: [PATCH] Add x64process stat. --- OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs index 400ce9fea6..61e366c05c 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs @@ -38,7 +38,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic static bool fetchedNews; // Increment the version number when adding new stats - const int SystemInformationVersion = 2; + const int SystemInformationVersion = 3; Dictionary> GetSystemInformation() { var lang = System.Globalization.CultureInfo.InstalledUICulture.TwoLetterISOLanguageName; @@ -48,6 +48,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic { "platform", Pair.New("OS Type", Platform.CurrentPlatform.ToString()) }, { "os", Pair.New("OS Version", Environment.OSVersion.ToString()) }, { "x64", Pair.New("OS is 64 bit", Environment.Is64BitOperatingSystem.ToString()) }, + { "x64process", Pair.New("Process is 64 bit", Environment.Is64BitProcess.ToString()) }, { "runtime", Pair.New(".NET Runtime", Platform.RuntimeVersion) }, { "gl", Pair.New("OpenGL Version", Game.Renderer.GLVersion) }, { "windowsize", Pair.New("Window Size", "{0}x{1}".F(Game.Renderer.Resolution.Width, Game.Renderer.Resolution.Height)) },