Scanline intensity now defaults to 25 instead of 40.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2556 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2012-10-17 13:49:33 +00:00
parent 192ad0bf81
commit 99d79bdd67
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ Settings::Settings(OSystem* osystem)
// TV filtering options
setInternal("tv_filter", "0");
setInternal("tv_scanlines", "40");
setInternal("tv_scanlines", "25");
setInternal("tv_scaninter", "true");
// TV options when using 'custom' mode
setInternal("tv_contrast", "0.0");

View File

@ -612,8 +612,8 @@ void VideoDialog::setDefaults()
myTVMode->setSelected("0", "0");
// TV scanline intensity and interpolation
myTVScanIntense->setValue(40);
myTVScanIntenseLabel->setLabel("40");
myTVScanIntense->setValue(25);
myTVScanIntenseLabel->setLabel("25");
myTVScanInterpolate->setState(true);
// Make sure that mutually-exclusive items are not enabled at the same time