corrected defaults for aspect ratio to 0.91 (NTSC)/1.09 (PAL)

see https://en.wikipedia.org/wiki/Pixel_aspect_ratio
This commit is contained in:
thrust26 2017-12-08 11:33:55 +01:00
parent 76b3ff02b3
commit a1d0319042
2 changed files with 4 additions and 4 deletions

View File

@ -44,8 +44,8 @@ Settings::Settings(OSystem& osystem)
// TIA specific options
setInternal("tia.zoom", "3");
setInternal("tia.inter", "false");
setInternal("tia.aspectn", "90");
setInternal("tia.aspectp", "100");
setInternal("tia.aspectn", "91");
setInternal("tia.aspectp", "109");
setInternal("tia.fsfill", "false");
setInternal("tia.dbgcolors", "roygpb");

View File

@ -511,9 +511,9 @@ void VideoDialog::setDefaults()
myFrameTiming->setSelected("sleep", "");
myTIAInterpolate->setSelected("nearest", "");
myNAspectRatio->setValue(90);
myNAspectRatioLabel->setLabel("90");
myNAspectRatioLabel->setLabel("91");
myPAspectRatio->setValue(100);
myPAspectRatioLabel->setLabel("100");
myPAspectRatioLabel->setLabel("109");
myFrameRate->setValue(0);
myFrameRateLabel->setLabel("Auto");