From 88b68135284e1d07e1abcc4b1c00ed830ef88d45 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Mon, 31 Jul 2017 10:23:33 -0400 Subject: [PATCH] A7800Hawk: Fix controller regression --- .../Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs index 0fd1941f2f..abe7641ba6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs @@ -237,7 +237,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk { byte result = 0; - if (controller.IsPressed("Right Difficulty")) + if (controller.IsPressed("Toggle Right Difficulty")) { if (!right_was_pressed) { @@ -252,7 +252,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk result |= (byte)((right_toggle ? 1 : 0) << 7); } - if (controller.IsPressed("Left Difficulty")) + if (controller.IsPressed("Toggle Left Difficulty")) { if (!left_was_pressed) {