Fix so that users can at least map to left shift, control, and alt. Currently right is not possible to map.
This commit is contained in:
parent
35f339149c
commit
ca1ad67f8e
|
@ -199,8 +199,8 @@
|
||||||
public string HexEditor = "";
|
public string HexEditor = "";
|
||||||
public string LuaConsole = "";
|
public string LuaConsole = "";
|
||||||
public string Cheats = "";
|
public string Cheats = "";
|
||||||
public string OpenROM = "";
|
public string OpenROM = "LeftControl+O, RightControl+O";
|
||||||
public string CloseROM = "";
|
public string CloseROM = "LeftControl+W, RightControl+W";
|
||||||
public string FrameCounterBinding = "";
|
public string FrameCounterBinding = "";
|
||||||
public string FPSBinding = "";
|
public string FPSBinding = "";
|
||||||
public string LagCounterBinding = "";
|
public string LagCounterBinding = "";
|
||||||
|
|
|
@ -87,11 +87,11 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
string str = "";
|
string str = "";
|
||||||
if((modifiers & Keys.Shift)!=0)
|
if((modifiers & Keys.Shift)!=0)
|
||||||
str += "SHIFT + ";
|
str += "LeftShift + ";
|
||||||
if ((modifiers & Keys.Control) != 0)
|
if ((modifiers & Keys.Control) != 0)
|
||||||
str += "CTRL + ";
|
str += "LeftControl + ";
|
||||||
if ((modifiers & Keys.Alt) != 0)
|
if ((modifiers & Keys.Alt) != 0)
|
||||||
str += "ALT + ";
|
str += "LeftAlt + ";
|
||||||
str += key.ToString();
|
str += key.ToString();
|
||||||
if (str.Length > 3)
|
if (str.Length > 3)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue