NES: fix the famicom 4player adapter

This commit is contained in:
goyuken 2014-03-14 21:51:40 +00:00
parent 8496f71812
commit 65b1397198
1 changed files with 1 additions and 1 deletions

View File

@ -734,7 +734,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
Latch(c);
byte ret = (byte)(latchedp2 << 1 & 2);
if (!resetting)
latchedp1 >>= 1;
latchedp2 >>= 1;
return ret;
}