Atari 7800 - record pal flag into movies

This commit is contained in:
adelikat 2014-05-25 00:00:44 +00:00
parent 4086eee72d
commit 9c351942c0
1 changed files with 8 additions and 0 deletions

View File

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