Added PAL sharpness percent indication label.
This commit is contained in:
parent
359b5c3786
commit
80d0df9c6b
|
@ -212,7 +212,7 @@ PaletteConfDialog_t::PaletteConfDialog_t(QWidget *parent)
|
||||||
hbox1->addWidget(saturationSlider);
|
hbox1->addWidget(saturationSlider);
|
||||||
saturationFrame->setLayout(hbox1);
|
saturationFrame->setLayout(hbox1);
|
||||||
|
|
||||||
sprintf(stmp, "Sharpness:");
|
sprintf(stmp, "Sharpness: %3i%%", palsharpness*2);
|
||||||
sharpnessFrame = new QGroupBox(tr(stmp));
|
sharpnessFrame = new QGroupBox(tr(stmp));
|
||||||
hbox1 = new QHBoxLayout();
|
hbox1 = new QHBoxLayout();
|
||||||
sharpnessSlider = new QSlider(Qt::Horizontal);
|
sharpnessSlider = new QSlider(Qt::Horizontal);
|
||||||
|
@ -625,6 +625,11 @@ void PaletteConfDialog_t::palSharpnessChanged(int value)
|
||||||
{
|
{
|
||||||
if (fceuWrapperTryLock())
|
if (fceuWrapperTryLock())
|
||||||
{
|
{
|
||||||
|
char stmp[64];
|
||||||
|
|
||||||
|
sprintf( stmp, "Sharpness: %3i%%", value*2 );
|
||||||
|
sharpnessFrame->setTitle( tr(stmp) );
|
||||||
|
|
||||||
palsharpness = value;
|
palsharpness = value;
|
||||||
palupdate = 1;
|
palupdate = 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue