From 04255670f71e61d123f790ba8d42ee79052321e0 Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 4 Aug 2014 02:59:08 +0000 Subject: [PATCH] neshawk (MMC5) - fix uchuu keibitai SDF; fixes bug #232 --- .../Consoles/Nintendo/NES/Boards/ExROM.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/ExROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/ExROM.cs index 897196e4da..2b89099702 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/ExROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/ExROM.cs @@ -251,7 +251,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES //wish this logic could be smaller.. //how does this KNOW that its in 8x16 sprites? the pattern of reads... emulate it that way.. - if (NES.ppu.reg_2000.obj_size_16) + if (NES.ppu.reg_2000.obj_size_16 + //zero 03-aug-2014 - added this to fix Uchuu Keibitai SDF. The game reads NT entries from CHR rom while PPU is disabled. + //obviously we have enormous numbers of bugs springing from our terrible emulation of ppu-disabled states, but this does the job for fixing this one + && NES.ppu.reg_2001.show_obj + ) { if (NES.ppu.ppuphase == NES.PPU.PPUPHASE.OBJ) bank_1k = a_banks_1k[bank_1k];