diff --git a/BizHawk.Emulation/Consoles/Coleco/Input.cs b/BizHawk.Emulation/Consoles/Coleco/Input.cs index 2ae721926e..b0a13e8a30 100644 --- a/BizHawk.Emulation/Consoles/Coleco/Input.cs +++ b/BizHawk.Emulation/Consoles/Coleco/Input.cs @@ -9,12 +9,12 @@ { "P1 Up", "P1 Down", "P1 Left", "P1 Right", "P1 L1", "P1 L2", "P1 R1", "P1 R2", - "P1 Key1", "P1 Key2", "P1 Key3", "P1 Key4", "P1 Key5", + "P1 Key0", "P1 Key1", "P1 Key2", "P1 Key3", "P1 Key4", "P1 Key5", "P1 Key6", "P1 Key7", "P1 Key8", "P1 Key9", "P1 Star", "P1 Pound", - "P2 Up", "P2 Down", "P2 Left", "P2 Right", + "P2 Up", "P2 Down", "P2 Left", "P2 Right", "P2 L1", "P2 L2", "P2 R1", "P2 R2", - "P2 Key1", "P2 Key2", "P2 Key3", "P2 Key4", "P2 Key5", + "P1 Key0", "P2 Key1", "P2 Key2", "P2 Key3", "P2 Key4", "P2 Key5", "P2 Key6", "P2 Key7", "P2 Key8", "P2 Key9", "P2 Star", "P2 Pound" } }; diff --git a/BizHawk.MultiClient/Config.cs b/BizHawk.MultiClient/Config.cs index 7a2901ccc5..2d51c796a3 100644 --- a/BizHawk.MultiClient/Config.cs +++ b/BizHawk.MultiClient/Config.cs @@ -1075,6 +1075,7 @@ namespace BizHawk.MultiClient public string R1 = ""; public string R2 = ""; + public string _0 = ""; public string _1 = ""; public string _2 = ""; public string _3 = ""; @@ -1102,6 +1103,7 @@ namespace BizHawk.MultiClient L2 = "X, J1 B2"; R1 = "C, J1 B1"; R2 = "V, J1 B2"; + _0 = "NumberPad0"; _1 = "NumberPad1"; _2 = "NumberPad2"; _3 = "NumberPad3"; @@ -1112,7 +1114,7 @@ namespace BizHawk.MultiClient _8 = "NumberPad8"; _9 = "NumberPad9"; Pound = "NumberPadPeriod"; - Star = "NumberPad0"; + Star = "NumberPadEnter"; } } } diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 49f4c15cea..b3865afcc7 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -962,6 +962,7 @@ namespace BizHawk.MultiClient colecoControls.BindMulti("P1 L2", Global.Config.ColecoController.L2); colecoControls.BindMulti("P1 R1", Global.Config.ColecoController.R1); colecoControls.BindMulti("P1 R2", Global.Config.ColecoController.R2); + colecoControls.BindMulti("P1 Key0", Global.Config.ColecoController._0); colecoControls.BindMulti("P1 Key1", Global.Config.ColecoController._1); colecoControls.BindMulti("P1 Key2", Global.Config.ColecoController._2); colecoControls.BindMulti("P1 Key3", Global.Config.ColecoController._3);