Add PAL flag to pal games in atari gamedb, remove todo in atari core

This commit is contained in:
adelikat 2014-05-24 01:12:18 +00:00
parent 667a96a277
commit 33abd29aec
2 changed files with 777 additions and 772 deletions

View File

@ -279,13 +279,18 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
OnExecFetch = this.ExecFetch
};
// TODO: add to game db so we only run DetectPal() on unknown games
if (_game["PAL"])
{
_pal = true;
}
else if (_game["NTSC"])
{
_pal = false;
}
else
{
_pal = DetectPal(_game, Rom);
}
_tia = new TIA(this, _pal);
_tia.GetFrameRate(out CoreComm.VsyncNum, out CoreComm.VsyncDen);

File diff suppressed because it is too large Load Diff