A7800Hawk: Fix controller regression

This commit is contained in:
alyosha-tas 2017-07-31 10:23:33 -04:00 committed by GitHub
parent 981d960f1c
commit 88b6813528
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{