From 9c351942c0d1610145e38cbe40fad6e49801222a Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 25 May 2014 00:00:44 +0000 Subject: [PATCH] Atari 7800 - record pal flag into movies --- BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs index 2d8ba3df17..176541e860 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs @@ -211,6 +211,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800 this.game = game; this.hsbios = highscoreBIOS; this.bios = GameInfo.MachineType == MachineType.A7800PAL ? pal_bios : ntsc_bios; + _pal = GameInfo.MachineType == MachineType.A7800PAL || GameInfo.MachineType == MachineType.A2600PAL; + if (bios == null) { throw new InvalidDataException("The BIOS corresponding to the region of the game you loaded is required to run Atari 7800 games."); @@ -219,6 +221,12 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800 HardReset(); } + private bool _pal; + public DisplayType DisplayType + { + get { return _pal ? DisplayType.PAL : DisplayType.NTSC; } + } + void HardReset() { cart = Cart.Create(rom, GameInfo.CartType);