From c1e3411da3f0271f4c6513de3374159ba1ac8ef6 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 10 Jul 2017 19:28:13 -0400 Subject: [PATCH] TSTHawk: Give a correct-ish aspect ratio for interlace mode --- BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs b/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs index 38c62268e5..ddeee3a616 100644 --- a/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs +++ b/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs @@ -30,13 +30,13 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCFX [CoreConstructor("PCFX")] public Tst(CoreComm comm, byte[] rom) - :base(comm, new Configuration()) + : base(comm, new Configuration()) { throw new InvalidOperationException("To load a PC-FX game, please load the CUE file and not the BIN file."); } public Tst(CoreComm comm, IEnumerable disks) - :base(comm, new Configuration + : base(comm, new Configuration { DefaultFpsNumerator = 7159091, DefaultFpsDenominator = 455 * 263, @@ -78,7 +78,7 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCFX ControllerDefinition = _controllerDeck.Definition; } - public override int VirtualWidth => 293; + public override int VirtualWidth => VirtualHeight > 240 ? 586 : 293; protected override void LoadStateBinaryInternal(BinaryReader reader) {