From 99d79bdd675cd08972da9a3bdfb6518e06036e8f Mon Sep 17 00:00:00 2001 From: stephena Date: Wed, 17 Oct 2012 13:49:33 +0000 Subject: [PATCH] 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 --- src/emucore/Settings.cxx | 2 +- src/gui/VideoDialog.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emucore/Settings.cxx b/src/emucore/Settings.cxx index 539691213..aebec8847 100644 --- a/src/emucore/Settings.cxx +++ b/src/emucore/Settings.cxx @@ -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"); diff --git a/src/gui/VideoDialog.cxx b/src/gui/VideoDialog.cxx index dee5fe9b7..69bcc4ebe 100644 --- a/src/gui/VideoDialog.cxx +++ b/src/gui/VideoDialog.cxx @@ -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