aboutsummaryrefslogtreecommitdiff
path: root/scumm/dialogs.cpp
diff options
context:
space:
mode:
authorTravis Howell2002-10-23 11:05:59 +0000
committerTravis Howell2002-10-23 11:05:59 +0000
commitd2fb928a9dc54a1e8904e4e2be0cb1cc5feec0af (patch)
treeed85228d497eacc3ef7443e449b7282e4d12f6f3 /scumm/dialogs.cpp
parent319b37bd7b42af88c1f721855587c955243891e6 (diff)
downloadscummvm-rg350-d2fb928a9dc54a1e8904e4e2be0cb1cc5feec0af.tar.gz
scummvm-rg350-d2fb928a9dc54a1e8904e4e2be0cb1cc5feec0af.tar.bz2
scummvm-rg350-d2fb928a9dc54a1e8904e4e2be0cb1cc5feec0af.zip
Add new command lime switch to readme and correct default volumes.
Change volume limits in gui to 255 svn-id: r5281
Diffstat (limited to 'scumm/dialogs.cpp')
-rw-r--r--scumm/dialogs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp
index 51629a7bdf..e5a9af64ff 100644
--- a/scumm/dialogs.cpp
+++ b/scumm/dialogs.cpp
@@ -506,9 +506,9 @@ OptionsDialog::OptionsDialog(NewGui *gui, Scumm *scumm)
musicVolumeSlider = new SliderWidget(this, 115, 24, 80, 12, "Volume2", kMusicVolumeChanged);
sfxVolumeSlider = new SliderWidget(this, 115, 40, 80, 12, "Volume3", kSfxVolumeChanged);
- masterVolumeSlider->setMinValue(0); masterVolumeSlider->setMaxValue(256);
- musicVolumeSlider->setMinValue(0); musicVolumeSlider->setMaxValue(256);
- sfxVolumeSlider->setMinValue(0); sfxVolumeSlider->setMaxValue(256);
+ masterVolumeSlider->setMinValue(0); masterVolumeSlider->setMaxValue(255);
+ musicVolumeSlider->setMinValue(0); musicVolumeSlider->setMaxValue(255);
+ sfxVolumeSlider->setMinValue(0); sfxVolumeSlider->setMaxValue(255);
masterVolumeLabel = new StaticTextWidget(this, 200, 10, 60, 16, "Volume1", kTextAlignLeft);
musicVolumeLabel = new StaticTextWidget(this, 200, 26, 60, 16, "Volume2", kTextAlignLeft);