Atari 7800 - record pal flag into movies
This commit is contained in:
parent
4086eee72d
commit
9c351942c0
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue