From b957e3726c238474cf7f0bed91e2059d6ae7f4ab Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Fri, 25 Aug 2017 10:25:38 -0400 Subject: [PATCH] Update A7800Hawk Mapper --- .../Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs index 7fe0fdb1e3..25c3bec1e0 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs @@ -55,7 +55,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk } else { - if (Core.cart_RAM == 0 && !Core.pokey) + if (Core.cart_RAM == 0 && !Core.is_pokey) { // return bank 6 int temp_addr = addr - 0x4000; @@ -138,7 +138,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk { bank = (byte)(value & (Core.small_flag ? 0x3 : 0x7)); } - else if (Core.pokey) + else if (Core.is_pokey) { }