Fix NES set mnemonic to match the get method
This commit is contained in:
parent
40379f898d
commit
9f6c276b5f
|
@ -220,14 +220,14 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
input.Append(IsPressed("Reset") ? "r" : ".");
|
input.Append(IsPressed("Reset") ? "r" : ".");
|
||||||
input.Append("|");
|
input.Append("|");
|
||||||
input.Append(IsPressed("A") ? "A" : ".");
|
input.Append(IsPressed("Right") ? "R" : ".");
|
||||||
input.Append(IsPressed("B") ? "B" : ".");
|
input.Append(IsPressed("Left") ? "L" : ".");
|
||||||
input.Append(IsPressed("Select") ? "s" : ".");
|
input.Append(IsPressed("Down") ? "D" : ".");
|
||||||
|
input.Append(IsPressed("Up") ? "U" : ".");
|
||||||
input.Append(IsPressed("Start") ? "S" : ".");
|
input.Append(IsPressed("Start") ? "S" : ".");
|
||||||
input.Append(IsPressed("Up") ? "U" : ".");
|
input.Append(IsPressed("Select") ? "s" : ".");
|
||||||
input.Append(IsPressed("Down") ? "D" : ".");
|
input.Append(IsPressed("B") ? "B" : ".");
|
||||||
input.Append(IsPressed("Left") ? "L" : ".");
|
input.Append(IsPressed("A") ? "A" : ".");
|
||||||
input.Append(IsPressed("Right") ? "R" : ".");
|
|
||||||
input.Append("|");
|
input.Append("|");
|
||||||
return input.ToString();
|
return input.ToString();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue