From 21706d8421b57a42e52c1078d496d568f7a36a7d Mon Sep 17 00:00:00 2001 From: James Groom Date: Thu, 18 Jan 2024 14:55:51 +1000 Subject: [PATCH] Fix typo fixes f6a9dee46 --- .../Consoles/Nintendo/NES/Boards/MLT-ACTION52.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MLT-ACTION52.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MLT-ACTION52.cs index a9a9178a45..41cd228132 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MLT-ACTION52.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MLT-ACTION52.cs @@ -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[1 <<< 3]; + 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)