N64: Fix the mnemonic when dealing with the analog buttons

This commit is contained in:
pjgat09 2013-08-02 21:11:09 +00:00
parent 0b672ebd9a
commit 7bcbef316a
1 changed files with 2 additions and 2 deletions

View File

@ -409,7 +409,7 @@ namespace BizHawk.MultiClient
int val = 0;
//Nasty hackery
if (name == "X Axis")
if (name == "Y Axis")
{
if (IsBasePressed("P" + player + " A Up"))
{
@ -424,7 +424,7 @@ namespace BizHawk.MultiClient
val = (int)GetBaseFloat("P" + player + " " + name);
}
}
else if (name == "Y Axis")
else if (name == "X Axis")
{
if (IsBasePressed("P" + player + " A Left"))
{