A2600: Fix ram buffer

This commit is contained in:
alyosha-tas 2019-08-01 08:51:32 -04:00
parent dce8db231b
commit 6948b999f1
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}