Remove "Version: " from the version string display

This commit is contained in:
Paul Chote
2010-07-07 23:10:01 +12:00
parent 5fba682fe0
commit 02e4d7d270

View File

@@ -32,7 +32,7 @@ namespace OpenRA.Widgets.Delegates
if (FileSystem.Exists("VERSION")) if (FileSystem.Exists("VERSION"))
{ {
var s = FileSystem.Open("VERSION"); var s = FileSystem.Open("VERSION");
version.Text = "Version: "+s.ReadAllText(); version.Text = s.ReadAllText();
s.Close(); s.Close();
} }
} }