NES: fix Shanghai (J)

This commit is contained in:
goyuken 2014-02-17 17:46:26 +00:00
parent c4c05740a7
commit 8a34ce3d0b
1 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,5 @@
using BizHawk.Common;
using System;
using BizHawk.Common;
namespace BizHawk.Emulation.Cores.Nintendo.NES
{
@ -57,10 +58,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
prg_bank_16k = (byte)((value >> 4) & 15);
SyncPRG();
if (value.Bit(0))
SetMirrorType(EMirrorType.Horizontal);
else
SetMirrorType(EMirrorType.Vertical);
// there is no mirroring control on this board; only a hardwired H\V
}
public override byte ReadPRG(int addr)