Atari 2600 - Set virtual width in pal to 320

This commit is contained in:
adelikat 2014-05-24 01:21:33 +00:00
parent c90f30457b
commit ed4c92c0f8
1 changed files with 9 additions and 1 deletions

View File

@ -237,7 +237,15 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
public int VirtualWidth
{
// TODO: PAL?
get { return 275; } // 275 comes from NTSC specs and the actual pixel clock of a 2600 TIA
get
{
if (_pal)
{
return 320;
}
return 275; // 275 comes from NTSC specs and the actual pixel clock of a 2600 TIA
}
}
public int VirtualHeight