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 +}