From 6948b999f1ba43b932b7a44feece3e1a15630de8 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 1 Aug 2019 08:51:32 -0400 Subject: [PATCH] A2600: Fix ram buffer --- BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs index 4fecdd9578..805ffdf42b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Mappers/mFA.cs @@ -35,7 +35,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public override void HardReset() { _toggle = 0; - _ram = new ByteBuffer(128); + _ram = new ByteBuffer(256); base.HardReset(); }