Prevent an IooRE in *Action 52*

see https://github.com/TASEmulators/BizHawk/issues/2999#issuecomment-1895239013
This commit is contained in:
James Groom 2024-01-17 17:35:25 +10:00 committed by GitHub
parent 62afd3c747
commit f6a9dee467
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
public int chr_reg;
public int chip_offset;
public bool cheetahmen = false;
private byte[] eRAM = new byte[4];
private byte[] eRAM = new byte[1 <<< 3];
private int chr_bank_mask_8k, prg_bank_mask_16k, prg_bank_mask_32k;
public override bool Configure(EDetectionOrigin origin)