From 2790ec18014d9a946ec8e0ec56e6182c59c556a0 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 3 May 2017 12:04:10 -0400 Subject: [PATCH] Update GxROM.cs Fix AV super real pachinko --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/GxROM.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/GxROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/GxROM.cs index a353722067..699abea7c3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/GxROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/GxROM.cs @@ -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); } } -} \ No newline at end of file +}