mirror of https://github.com/stella-emu/stella.git
allow changing TV hue in 1% steps
update palette display when defaulting
This commit is contained in:
parent
dda4ec8906
commit
106a021ece
|
@ -233,6 +233,7 @@ void VideoAudioDialog::addPaletteTab()
|
||||||
CREATE_CUSTOM_SLIDERS(Contrast, "Contrast ", kPaletteUpdated)
|
CREATE_CUSTOM_SLIDERS(Contrast, "Contrast ", kPaletteUpdated)
|
||||||
CREATE_CUSTOM_SLIDERS(Bright, "Brightness ", kPaletteUpdated)
|
CREATE_CUSTOM_SLIDERS(Bright, "Brightness ", kPaletteUpdated)
|
||||||
CREATE_CUSTOM_SLIDERS(Gamma, "Gamma ", kPaletteUpdated)
|
CREATE_CUSTOM_SLIDERS(Gamma, "Gamma ", kPaletteUpdated)
|
||||||
|
myTVHue->setStepValue(1);
|
||||||
|
|
||||||
// The resulting palette
|
// The resulting palette
|
||||||
xpos = myPhaseShiftNtsc->getRight() + fontWidth * 2;
|
xpos = myPhaseShiftNtsc->getRight() + fontWidth * 2;
|
||||||
|
@ -729,6 +730,7 @@ void VideoAudioDialog::setDefaults()
|
||||||
myTVBright->setValue(50);
|
myTVBright->setValue(50);
|
||||||
myTVGamma->setValue(50);
|
myTVGamma->setValue(50);
|
||||||
handlePaletteChange();
|
handlePaletteChange();
|
||||||
|
handlePaletteUpdate();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2: // TV effects
|
case 2: // TV effects
|
||||||
|
|
Loading…
Reference in New Issue