From 02e4d7d2700f15a00a1a9e6652a56f905b78c305 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Wed, 7 Jul 2010 23:10:01 +1200 Subject: [PATCH] Remove "Version: " from the version string display --- OpenRA.Game/Widgets/Delegates/MainMenuButtonsDelegate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Widgets/Delegates/MainMenuButtonsDelegate.cs b/OpenRA.Game/Widgets/Delegates/MainMenuButtonsDelegate.cs index 3feaee5178..53d80e4b73 100644 --- a/OpenRA.Game/Widgets/Delegates/MainMenuButtonsDelegate.cs +++ b/OpenRA.Game/Widgets/Delegates/MainMenuButtonsDelegate.cs @@ -32,7 +32,7 @@ namespace OpenRA.Widgets.Delegates if (FileSystem.Exists("VERSION")) { var s = FileSystem.Open("VERSION"); - version.Text = "Version: "+s.ReadAllText(); + version.Text = s.ReadAllText(); s.Close(); } }