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.Height
|
||||
"NO", // Display.Phosphor
|
||||
"77" // Display.PPBlend
|
||||
"60" // Display.PPBlend
|
||||
};
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
|
@ -32,7 +32,7 @@ TIASurface::TIASurface(OSystem& system)
|
|||
myTIA(nullptr),
|
||||
myFilterType(kNormal),
|
||||
myUsePhosphor(false),
|
||||
myPhosphorPercent(0.77f),
|
||||
myPhosphorPercent(0.60f),
|
||||
myScanlinesEnabled(false),
|
||||
myPalette(nullptr)
|
||||
{
|
||||
|
|
|
@ -70,7 +70,7 @@ my @prop_defaults = (
|
|||
"0",
|
||||
"0",
|
||||
"NO",
|
||||
"77"
|
||||
"60"
|
||||
);
|
||||
|
||||
# Load and parse a properties file into an hash table of property
|
||||
|
|
Loading…
Reference in New Issue