Remove obsolete x64 and x64process sysinfo columns.

This commit is contained in:
Paul Chote
2023-06-11 11:35:36 +01:00
committed by Matthias Mailänder
parent 1f37728ecf
commit 703618be19

View File

@@ -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}") },