From 3f45406d7dfc291d1395cb6043636b4a2bafc733 Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 26 Jun 2017 20:49:56 -0500 Subject: [PATCH] fix basic waterbox aspect ratio. yeah, all of them. should probably be finetuned per core later though. --- BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs b/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs index 02824114a5..a9d8f6be51 100644 --- a/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs +++ b/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs @@ -374,7 +374,7 @@ namespace BizHawk.Emulation.Cores.Waterbox protected readonly int[] _videoBuffer; public virtual int VirtualWidth => BufferWidth; - public virtual int VirtualHeight => BufferWidth; + public virtual int VirtualHeight => BufferHeight; public int BufferWidth { get; protected set; } public int BufferHeight { get; protected set; } public virtual int VsyncNumerator { get; protected set; }