Input Widget - hacky fix, Remove "Oem" from any key binding it receives. Things like period & comma can be mapped to controllers now

This commit is contained in:
andres.delikat 2011-03-01 04:37:42 +00:00
parent 6adf6c10bb
commit 6165efd43b
1 changed files with 2 additions and 0 deletions

View File

@ -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;