remove config item for match timer in RA

This commit is contained in:
Chris Forbes
2011-07-17 12:41:21 +12:00
parent 2d79c7c424
commit 5c5eb5d5b5
2 changed files with 3 additions and 12 deletions

View File

@@ -131,9 +131,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic
perfgraphCheckbox.IsChecked = () => Game.Settings.Debug.PerfGraph;
perfgraphCheckbox.OnClick = () => Game.Settings.Debug.PerfGraph ^= true;
var matchtimerCheckbox = debug.GetWidget<CheckboxWidget>("GAMETIME_CHECKBOX");
matchtimerCheckbox.IsChecked = () => Game.Settings.Game.MatchTimer;
matchtimerCheckbox.OnClick = () => Game.Settings.Game.MatchTimer ^= true;
Game.Settings.Game.MatchTimer = true;
var checkunsyncedCheckbox = debug.GetWidget<CheckboxWidget>("CHECKUNSYNCED_CHECKBOX");
checkunsyncedCheckbox.IsChecked = () => Game.Settings.Debug.SanityCheckUnsyncedCode;