mirror of https://github.com/stella-emu/stella.git
Set default phosphor blend to 60; looks the most realistic on my test systems.
This commit is contained in:
parent
c8abbf50fb
commit
ef9816014d
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue