From 6165efd43bd6244c033ecb34875356dedc88c069 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Tue, 1 Mar 2011 04:37:42 +0000 Subject: [PATCH] Input Widget - hacky fix, Remove "Oem" from any key binding it receives. Things like period & comma can be mapped to controllers now --- BizHawk.MultiClient/config/InputWidget.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.MultiClient/config/InputWidget.cs b/BizHawk.MultiClient/config/InputWidget.cs index 276bcd1a20..9c1f540050 100644 --- a/BizHawk.MultiClient/config/InputWidget.cs +++ b/BizHawk.MultiClient/config/InputWidget.cs @@ -93,6 +93,8 @@ namespace BizHawk.MultiClient if ((modifiers & Keys.Alt) != 0) str += "ALT + "; str += key.ToString(); + if (str.Substring(0, 3) == "Oem") + str = str.Substring(3, str.Length - 3); return str; } public Keys key;