From ae104deac36f60f0f30e5d952c2d14b9f1015490 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 21 May 2014 15:47:18 +0000 Subject: [PATCH] fix up previous commit --- .../Consoles/Atari/2600/Atari2600.cs | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs index 14dba89ea3..09e362f291 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs @@ -255,19 +255,21 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 private static bool DetectPal(GameInfo game, byte[] rom) { + // give the emu a minimal of input\output connections so it doesn't crash var comm = new CoreComm(null, null); comm.InputCallback = new InputCallbackSystem(); + using (Atari2600 emu = new Atari2600(new CoreComm(null, null), game, rom, null, null)) + { + emu.Controller = new NullController(); - Atari2600 emu = new Atari2600(new CoreComm(null, null), game, rom, null, null); - emu.Controller = new NullController(); - - List framecounts = new List(); - emu._tia.FrameEndCallBack = (i) => framecounts.Add(i); - for (int i = 0; i < 71; i++) // run for 71 * 262 lines, since we're in NTSC mode - emu.FrameAdvance(false, false); - int numpal = framecounts.Where((i) => i > 287).Count(); - Console.WriteLine("{0} PAL", numpal); - return numpal >= 25; + List framecounts = new List(); + emu._tia.FrameEndCallBack = (i) => framecounts.Add(i); + for (int i = 0; i < 71; i++) // run for 71 * 262 lines, since we're in NTSC mode + emu.FrameAdvance(false, false); + int numpal = framecounts.Count((i) => i > 287); + Console.WriteLine("{0} PAL", numpal); + return numpal >= 25; + } } } }