From 9783fdaf780f1e6e63852ade6548925e86e1cee3 Mon Sep 17 00:00:00 2001 From: Ivaylo Draganov Date: Fri, 10 May 2019 20:57:32 +0300 Subject: [PATCH] Change the name of Keycode.UNKNOWN to "Undefined" --- OpenRA.Game/Input/Keycode.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Input/Keycode.cs b/OpenRA.Game/Input/Keycode.cs index 7224fef13a..7662866aab 100644 --- a/OpenRA.Game/Input/Keycode.cs +++ b/OpenRA.Game/Input/Keycode.cs @@ -258,7 +258,7 @@ namespace OpenRA { static readonly Dictionary KeyNames = new Dictionary { - { Keycode.UNKNOWN, "Unknown" }, + { Keycode.UNKNOWN, "Undefined" }, { Keycode.RETURN, "Return" }, { Keycode.ESCAPE, "Escape" }, { Keycode.BACKSPACE, "Backspace" },