mirror of https://github.com/stella-emu/stella.git
reversed aspect ratio settings for NTSC50, PAL60 and SECAM60
This commit is contained in:
parent
7dd433a116
commit
e9a6deee70
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue