mirror of https://github.com/stella-emu/stella.git
fixed wording
This commit is contained in:
parent
dc7697a4d4
commit
d6e2c11275
|
@ -89,7 +89,7 @@ AudioDialog::AudioDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
xpos += INDENT;
|
xpos += INDENT;
|
||||||
|
|
||||||
// Fragment size
|
// Fragment size
|
||||||
pwidth = font.getStringWidth("512 samples");
|
pwidth = font.getStringWidth("512 samples") + 7;
|
||||||
lwidth = font.getStringWidth("Resampling quality ");
|
lwidth = font.getStringWidth("Resampling quality ");
|
||||||
items.clear();
|
items.clear();
|
||||||
VarList::push_back(items, "128 samples", 128);
|
VarList::push_back(items, "128 samples", 128);
|
||||||
|
@ -150,8 +150,8 @@ AudioDialog::AudioDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
wid.push_back(myStereoSoundCheckbox);
|
wid.push_back(myStereoSoundCheckbox);
|
||||||
ypos += lineHeight + VGAP;
|
ypos += lineHeight + VGAP;
|
||||||
|
|
||||||
myDpcPitch = new SliderWidget(this, font, xpos, ypos,
|
myDpcPitch = new SliderWidget(this, font, xpos, ypos, swidth - 16, lineHeight,
|
||||||
"DPC Pitch ", 0, 0, 5 * fontWidth);
|
"Pitfall II music pitch ", 0, 0, 5 * fontWidth);
|
||||||
myDpcPitch->setMinValue(10000); myDpcPitch->setMaxValue(30000);
|
myDpcPitch->setMinValue(10000); myDpcPitch->setMaxValue(30000);
|
||||||
myDpcPitch->setStepValue(100);
|
myDpcPitch->setStepValue(100);
|
||||||
myDpcPitch->setTickmarkIntervals(2);
|
myDpcPitch->setTickmarkIntervals(2);
|
||||||
|
|
Loading…
Reference in New Issue