From 703618be1920d06489e860fe9021c3cadd32eff8 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 11 Jun 2023 11:35:36 +0100 Subject: [PATCH] Remove obsolete x64 and x64process sysinfo columns. --- OpenRA.Mods.Common/Widgets/Logic/SystemInfoPromptLogic.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenRA.Mods.Common/Widgets/Logic/SystemInfoPromptLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/SystemInfoPromptLogic.cs index 107ce62892..f373fc51c1 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/SystemInfoPromptLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/SystemInfoPromptLogic.cs @@ -30,8 +30,6 @@ namespace OpenRA.Mods.Common.Widgets.Logic { "platform", ("OS Type", Platform.CurrentPlatform.ToString()) }, { "os", ("OS Version", Platform.OperatingSystem) }, { "arch", ("Architecture", Platform.CurrentArchitecture.ToString()) }, - { "x64", ("OS is 64 bit", Environment.Is64BitOperatingSystem.ToString()) }, - { "x64process", ("Process is 64 bit", Environment.Is64BitProcess.ToString()) }, { "runtime", (".NET Runtime", Platform.RuntimeVersion) }, { "gl", ("OpenGL Version", Game.Renderer.GLVersion) }, { "windowsize", ("Window Size", $"{Game.Renderer.NativeResolution.Width}x{Game.Renderer.NativeResolution.Height}") },