fix basic waterbox aspect ratio. yeah, all of them. should probably be finetuned per core later though.

This commit is contained in:
zeromus 2017-06-26 20:49:56 -05:00
parent 434527666c
commit 3f45406d7d
1 changed files with 1 additions and 1 deletions

View File

@ -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; }