remove ability to not save syncreports

This commit is contained in:
Chris Forbes
2010-12-23 08:48:54 +13:00
parent 68e8565561
commit c1fb6c2732
5 changed files with 4 additions and 30 deletions

View File

@@ -149,14 +149,6 @@ namespace OpenRA.Mods.RA.Widgets.Delegates
return true;
};
var syncreports = debug.GetWidget<CheckboxWidget>("SYNCREPORTS_CHECKBOX");
syncreports.Checked = () => { return Game.Settings.Debug.RecordSyncReports; };
syncreports.OnMouseDown = mi =>
{
Game.Settings.Debug.RecordSyncReports ^= true;
return true;
};
var timedebug = debug.GetWidget<CheckboxWidget>("GAMETIME_CHECKBOX");
timedebug.Checked = () => {return Game.Settings.Game.MatchTimer;};
timedebug.OnMouseDown = mi =>