From e9a6deee707496ee425c31e51b1272f9e701c7aa Mon Sep 17 00:00:00 2001 From: thrust26 Date: Wed, 29 Aug 2018 15:28:24 +0200 Subject: [PATCH] reversed aspect ratio settings for NTSC50, PAL60 and SECAM60 --- src/emucore/FrameBuffer.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emucore/FrameBuffer.cxx b/src/emucore/FrameBuffer.cxx index dccc2225f..f408941f5 100644 --- a/src/emucore/FrameBuffer.cxx +++ b/src/emucore/FrameBuffer.cxx @@ -812,8 +812,8 @@ void FrameBuffer::setAvailableVidModes(uInt32 baseWidth, uInt32 baseHeight) myDesktopSize.w, myDesktopSize.h); // Aspect ratio - uInt32 aspect = myOSystem.settings().getInt(myOSystem.console().timing() == ConsoleTiming::ntsc ? - "tia.aspectn" : "tia.aspectp"); + uInt32 aspect = myOSystem.settings().getInt(myOSystem.console().tia().frameLayout() == FrameLayout::ntsc ? + "tia.aspectn" : "tia.aspectp"); // Figure our the smallest zoom level we can use uInt32 firstZoom = 2;