From 162932797b6df64cdffeee0948eabc28d1bf1024 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 19 Oct 2012 21:33:23 +0000 Subject: [PATCH] Atari - make 4Pak use the F6 mapper (header wants 4IN1 which I couldn't find any info on). F6 makes it playable it seems. --- BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs b/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs index 8a67e911ee..0e7df6d173 100644 --- a/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs +++ b/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs @@ -124,6 +124,7 @@ namespace BizHawk case "CV": mapper = new mCV(); break; case "F8": mapper = new mF8(); break; case "F6": + case "4IN1": case "F6SC": mapper = new mF6(); break; case "F4": case "F4SC": mapper = new mF4(); break;