From c5e2529eb40d4eb87f7b5e708b212e2b8b2c2c57 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sun, 5 Mar 2017 17:42:01 -0500 Subject: [PATCH] Intellivision fix aspect ratio --- BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs index 99c1f1c27d..cf0e30b938 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs @@ -75,7 +75,7 @@ namespace BizHawk.Emulation.Cores.Intellivision } } - public int VirtualWidth { get { return 176; } } + public int VirtualWidth { get { return 277; } } public int BufferWidth { get { return 176; } } public int VirtualHeight { get { return 208; } } public int BufferHeight { get { return 208; } }