mirror of https://github.com/stella-emu/stella.git
change zero value for phosphor into "0" (not "Off")
This commit is contained in:
parent
7bdc263699
commit
915e11dc6c
|
@ -472,7 +472,8 @@ void VideoDialog::saveConfig()
|
|||
instance().settings().setValue("tv.phosphor",
|
||||
myTVPhosphor->getState() ? "always" : "byrom");
|
||||
// TV phosphor blend
|
||||
instance().settings().setValue("tv.phosblend", myTVPhosLevel->getValueLabel());
|
||||
instance().settings().setValue("tv.phosblend", myTVPhosLevel->getValueLabel() == "Off"
|
||||
? "0" : myTVPhosLevel->getValueLabel());
|
||||
|
||||
// TV scanline intensity
|
||||
instance().settings().setValue("tv.scanlines", myTVScanIntense->getValueLabel());
|
||||
|
|
Loading…
Reference in New Issue