Finally found the bug in bonza

still doesn't do anyhting though
How to even implement this?
This commit is contained in:
alyosha-tas 2016-09-18 20:57:47 -04:00 committed by GitHub
parent d39a8abf3c
commit 4e673ecd63
1 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,10 @@
namespace BizHawk.Emulation.Cores.Nintendo.NES
{
// Bonza (R)
// Bonza is some kind of gambling game requiring an outside interface of some kind
// this is not implemented
// Magic Jewelry 2 (Unl)
public class Bonza : NES.NESBoardBase
{
@ -55,7 +59,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
// Magic Jewelry has no VROM and does not write chr regs
if (addr < 0x2000 && VROM != null)
{
return VROM[(_chrReg * 2000) + (addr & 0x1FFF)];
return VROM[(_chrReg * 0x2000) + (addr & 0x1FFF)];
}
return base.ReadPPU(addr);