From 2ba5fe338a5459ec69494a1d2f28920fa1079935 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 18 Apr 2021 11:09:33 -0400 Subject: [PATCH] add missing menacer keys (#2718) See eafa39456f4a03395755b8ba69122655c843e9 and 307d85cee056298a6271f6537947296aeaa80a. This will add extra keys that do nothing on certain non-menacer light guns, but that never seemed to bother anyone in 1.x. --- .../Consoles/Sega/gpgx64/GPGXControlConverter.cs | 2 ++ src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/LibGPGX.cs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs index 266b54437f..1addc3711c 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs @@ -61,6 +61,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx { new CName("Lightgun Trigger", LibGPGX.INPUT_KEYS.INPUT_MENACER_TRIGGER), new CName("Lightgun Start", LibGPGX.INPUT_KEYS.INPUT_MENACER_START), + new CName("Lightgun B", LibGPGX.INPUT_KEYS.INPUT_MENACER_B), + new CName("Lightgun C", LibGPGX.INPUT_KEYS.INPUT_MENACER_C), }; private static readonly CName[] Activator = diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/LibGPGX.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/LibGPGX.cs index 9792978c25..94e0e0b3f2 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/LibGPGX.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/LibGPGX.cs @@ -224,6 +224,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx /* Menacer */ INPUT_MENACER_TRIGGER = 0x0040, INPUT_MENACER_START = 0x0080, + INPUT_MENACER_B = 0x0020, + INPUT_MENACER_C = 0x0010, } [StructLayout(LayoutKind.Sequential)]