From 2b890bdb2f5c1951a02f5dd9806df81693f784e1 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 25 Jul 2010 21:16:10 +1200 Subject: [PATCH] make backspace 'cycle bases' binding more obvious. not all of us know the whole character set, or care to. --- OpenRA.Game/Widgets/DefaultInputControllerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Widgets/DefaultInputControllerWidget.cs b/OpenRA.Game/Widgets/DefaultInputControllerWidget.cs index 560305948e..aff6487804 100644 --- a/OpenRA.Game/Widgets/DefaultInputControllerWidget.cs +++ b/OpenRA.Game/Widgets/DefaultInputControllerWidget.cs @@ -173,7 +173,7 @@ namespace OpenRA.Widgets return true; } - if (e.KeyChar == 08) + if (e.KeyChar == '\b') { GotoNextBase(); return true;