Update GxROM.cs

Fix AV super real pachinko
This commit is contained in:
alyosha-tas 2017-05-03 12:04:10 -04:00 committed by GitHub
parent 8b2b12585a
commit 2790ec1801
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
public override void WritePRG(int addr, byte value)
{
chr = ((value & 3) & chr_mask);
chr = ((value & 7) & chr_mask);
prg = (((value>>4) & 3) & prg_mask);
}
@ -82,4 +82,4 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
ser.Sync("prg", ref prg);
}
}
}
}