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);