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:
parent
6adf6c10bb
commit
6165efd43b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue