Add PAL flag to pal games in atari gamedb, remove todo in atari core
This commit is contained in:
parent
667a96a277
commit
33abd29aec
|
@ -279,13 +279,18 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
||||||
OnExecFetch = this.ExecFetch
|
OnExecFetch = this.ExecFetch
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: add to game db so we only run DetectPal() on unknown games
|
|
||||||
if (_game["PAL"])
|
if (_game["PAL"])
|
||||||
|
{
|
||||||
_pal = true;
|
_pal = true;
|
||||||
|
}
|
||||||
else if (_game["NTSC"])
|
else if (_game["NTSC"])
|
||||||
|
{
|
||||||
_pal = false;
|
_pal = false;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
_pal = DetectPal(_game, Rom);
|
_pal = DetectPal(_game, Rom);
|
||||||
|
}
|
||||||
|
|
||||||
_tia = new TIA(this, _pal);
|
_tia = new TIA(this, _pal);
|
||||||
_tia.GetFrameRate(out CoreComm.VsyncNum, out CoreComm.VsyncDen);
|
_tia.GetFrameRate(out CoreComm.VsyncNum, out CoreComm.VsyncDen);
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue