Update MMC3.cs
make some things public needed for mapper 215
This commit is contained in:
parent
81d6247522
commit
0b9e7532e3
|
@ -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
|
|||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue