reversed aspect ratio settings for NTSC50, PAL60 and SECAM60

This commit is contained in:
thrust26 2018-08-29 15:28:24 +02:00
parent 7dd433a116
commit e9a6deee70
1 changed files with 2 additions and 2 deletions

View File

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