diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs index b6ecb67c0c..0c515a2397 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs @@ -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