woops
This commit is contained in:
parent
3ffde6b88a
commit
65accb7c94
BizHawk.Emulation.Cores/Consoles/Nintendo/NES
|
@ -97,12 +97,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
|
||||
public byte ReadA(IController c)
|
||||
{
|
||||
return (byte)(Left.Read(LeftU.UnMerge(c)) & 0x13);
|
||||
return (byte)(Left.Read(LeftU.UnMerge(c)) & 0x19);
|
||||
}
|
||||
|
||||
public byte ReadB(IController c)
|
||||
{
|
||||
return (byte)(Right.Read(RightU.UnMerge(c)) & 0x13);
|
||||
return (byte)(Right.Read(RightU.UnMerge(c)) & 0x19);
|
||||
}
|
||||
|
||||
public ControllerDefinition GetDefinition()
|
||||
|
|
Loading…
Reference in New Issue