From 398d9c45cb4ade0b9d5b1839b9f7317e4238789c Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 13 Jun 2020 15:08:20 -0400 Subject: [PATCH] Revert "fix nyma button binding label" This reverts commit 14661f4c76feb991d8a3202394cbaab24770c531. Dunno what was going on here, this is a feature that we'll need to fix #2129 and similar... please don't randomly delete code? --- src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs | 5 +++++ src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs index fe5b69ece0..9fa1c86737 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs @@ -50,6 +50,11 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE "pce_fast.slstart", "pce_fast.slend", }; + protected override IDictionary ButtonNameOverrides { get; } = new Dictionary + { + { "RIGHT →", "Right up my arse" }, + }; + // pce always has two layers, sgx always has 4, and mednafen knows this public bool IsSgx => SettingsInfo.LayerNames.Count == 4; diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs index f13e153403..bf274b2348 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs @@ -59,6 +59,11 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE "pce.slstart", "pce.slend", }; + protected override IDictionary ButtonNameOverrides { get; } = new Dictionary + { + { "RIGHT →", "Right up my arse" }, + }; + // pce always has two layers, sgx always has 4, and mednafen knows this public bool IsSgx => SettingsInfo.LayerNames.Count == 4;