Correct aspect ratio for Stella

This commit is contained in:
CasualPokePlayer 2024-09-16 00:26:35 -07:00
parent a8ab0ed302
commit e06997dd4c
1 changed files with 2 additions and 2 deletions

View File

@ -7,9 +7,9 @@ namespace BizHawk.Emulation.Cores.Atari.Stella
{
public int[] GetVideoBuffer() => _vidBuff;
public int VirtualWidth => 160;
public int VirtualWidth => Region == DisplayType.NTSC ? 275 : 320;
public int VirtualHeight => 192;
public int VirtualHeight => BufferHeight;
public int BufferWidth { get; private set; }