From 0b9e7532e33aaff9ef63a7fbac9dda4bf1d66382 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 28 Sep 2016 12:53:44 -0400 Subject: [PATCH] Update MMC3.cs make some things public needed for mapper 215 --- .../Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs index 0a6a7d3508..c83c17fd24 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs @@ -12,10 +12,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public class MMC3 : IDisposable { //state - int reg_addr; + public int reg_addr; public bool get_chr_mode { get { return chr_mode; } } // one of the pirate mappers needs this public bool chr_mode; - bool prg_mode; + public bool prg_mode; public ByteBuffer regs = new ByteBuffer(8); public byte mirror; @@ -426,4 +426,4 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } -} \ No newline at end of file +}