diff --git a/OpenRA.Game/Widgets/ChromeMetrics.cs b/OpenRA.Game/Widgets/ChromeMetrics.cs index 67bbc93916..b0b5d526e8 100644 --- a/OpenRA.Game/Widgets/ChromeMetrics.cs +++ b/OpenRA.Game/Widgets/ChromeMetrics.cs @@ -15,7 +15,7 @@ using OpenRA.FileFormats; namespace OpenRA.Widgets { - static class ChromeMetrics + public static class ChromeMetrics { static Dictionary data = new Dictionary(); @@ -32,7 +32,7 @@ namespace OpenRA.Widgets public static T Get(string key) { - return FieldLoader.GetValue( key, data[key] ); + return FieldLoader.GetValue(key, data[key]); } } }