From ca1ad67f8e3e64452e79ca1860c69a403ba76bf1 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sun, 17 Apr 2011 18:06:10 +0000 Subject: [PATCH] Fix so that users can at least map to left shift, control, and alt. Currently right is not possible to map. --- BizHawk.MultiClient/Config.cs | 4 ++-- BizHawk.MultiClient/config/InputWidget.cs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BizHawk.MultiClient/Config.cs b/BizHawk.MultiClient/Config.cs index fdf48f01ba..856e784175 100644 --- a/BizHawk.MultiClient/Config.cs +++ b/BizHawk.MultiClient/Config.cs @@ -199,8 +199,8 @@ public string HexEditor = ""; public string LuaConsole = ""; public string Cheats = ""; - public string OpenROM = ""; - public string CloseROM = ""; + public string OpenROM = "LeftControl+O, RightControl+O"; + public string CloseROM = "LeftControl+W, RightControl+W"; public string FrameCounterBinding = ""; public string FPSBinding = ""; public string LagCounterBinding = ""; diff --git a/BizHawk.MultiClient/config/InputWidget.cs b/BizHawk.MultiClient/config/InputWidget.cs index fdb9c813b0..a020c668e4 100644 --- a/BizHawk.MultiClient/config/InputWidget.cs +++ b/BizHawk.MultiClient/config/InputWidget.cs @@ -87,11 +87,11 @@ namespace BizHawk.MultiClient { string str = ""; if((modifiers & Keys.Shift)!=0) - str += "SHIFT + "; + str += "LeftShift + "; if ((modifiers & Keys.Control) != 0) - str += "CTRL + "; + str += "LeftControl + "; if ((modifiers & Keys.Alt) != 0) - str += "ALT + "; + str += "LeftAlt + "; str += key.ToString(); if (str.Length > 3) {