Atari 2600 - Set virtual width in pal to 320
This commit is contained in:
parent
c90f30457b
commit
ed4c92c0f8
|
@ -237,7 +237,15 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
||||||
public int VirtualWidth
|
public int VirtualWidth
|
||||||
{
|
{
|
||||||
// TODO: PAL?
|
// 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
|
public int VirtualHeight
|
||||||
|
|
Loading…
Reference in New Issue