Set default phosphor blend to 60; looks the most realistic on my test systems.

This commit is contained in:
Stephen Anthony 2017-05-28 19:53:48 -02:30
parent c8abbf50fb
commit ef9816014d
3 changed files with 3 additions and 3 deletions

View File

@ -324,7 +324,7 @@ const char* Properties::ourDefaultProperties[LastPropType] = {
"0", // Display.YStart "0", // Display.YStart
"0", // Display.Height "0", // Display.Height
"NO", // Display.Phosphor "NO", // Display.Phosphor
"77" // Display.PPBlend "60" // Display.PPBlend
}; };
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -32,7 +32,7 @@ TIASurface::TIASurface(OSystem& system)
myTIA(nullptr), myTIA(nullptr),
myFilterType(kNormal), myFilterType(kNormal),
myUsePhosphor(false), myUsePhosphor(false),
myPhosphorPercent(0.77f), myPhosphorPercent(0.60f),
myScanlinesEnabled(false), myScanlinesEnabled(false),
myPalette(nullptr) myPalette(nullptr)
{ {

View File

@ -70,7 +70,7 @@ my @prop_defaults = (
"0", "0",
"0", "0",
"NO", "NO",
"77" "60"
); );
# Load and parse a properties file into an hash table of property # Load and parse a properties file into an hash table of property