From ba3feac259f5f5299d94219d02faf49e84814634 Mon Sep 17 00:00:00 2001 From: pjgat09 Date: Sat, 11 May 2013 20:21:29 +0000 Subject: [PATCH] N64: Hook up the rest of the buttons on the virtual pad --- .../tools/VirtualPadN64.Designer.cs | 1 + BizHawk.MultiClient/tools/VirtualPadN64.cs | 40 +++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/BizHawk.MultiClient/tools/VirtualPadN64.Designer.cs b/BizHawk.MultiClient/tools/VirtualPadN64.Designer.cs index 02fd0858fa..13ebe9a1e6 100644 --- a/BizHawk.MultiClient/tools/VirtualPadN64.Designer.cs +++ b/BizHawk.MultiClient/tools/VirtualPadN64.Designer.cs @@ -139,6 +139,7 @@ this.BZ.TabIndex = 11; this.BZ.Text = "Z"; this.BZ.UseVisualStyleBackColor = true; + this.BZ.CheckedChanged += new System.EventHandler(this.Buttons_CheckedChanged); // // BB // diff --git a/BizHawk.MultiClient/tools/VirtualPadN64.cs b/BizHawk.MultiClient/tools/VirtualPadN64.cs index 9c5121d86a..a5b83e6a78 100644 --- a/BizHawk.MultiClient/tools/VirtualPadN64.cs +++ b/BizHawk.MultiClient/tools/VirtualPadN64.cs @@ -155,6 +155,46 @@ namespace BizHawk.MultiClient { Global.StickyXORAdapter.SetSticky(Controller + " DPad R", PR.Checked); } + else if (sender == CR) + { + Global.StickyXORAdapter.SetSticky(Controller + " C Right", CR.Checked); + } + else if (sender == CL) + { + Global.StickyXORAdapter.SetSticky(Controller + " C Left", CL.Checked); + } + else if (sender == CU) + { + Global.StickyXORAdapter.SetSticky(Controller + " C Up", CU.Checked); + } + else if (sender == CD) + { + Global.StickyXORAdapter.SetSticky(Controller + " C Down", CD.Checked); + } + else if (sender == BR) + { + Global.StickyXORAdapter.SetSticky(Controller + " R", BR.Checked); + } + else if (sender == BL) + { + Global.StickyXORAdapter.SetSticky(Controller + " L", BL.Checked); + } + else if (sender == BS) + { + Global.StickyXORAdapter.SetSticky(Controller + " Start", BS.Checked); + } + else if (sender == BA) + { + Global.StickyXORAdapter.SetSticky(Controller + " A", BA.Checked); + } + else if (sender == BB) + { + Global.StickyXORAdapter.SetSticky(Controller + " B", BB.Checked); + } + else if (sender == BZ) + { + Global.StickyXORAdapter.SetSticky(Controller + " Z", BZ.Checked); + } } private void AnalogControl1_MouseClick(object sender, MouseEventArgs e)