mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-17 23:27:37 +00:00
The Floppy version has speech in the intro. (it doesn't hurt if speechToggle is set for the floppy version)
svn-id: r12588
This commit is contained in:
parent
10a37c8c25
commit
5fa9dfa87e
@ -122,7 +122,7 @@ void QueenEngine::registerDefaultSettings() {
|
||||
ConfMan.registerDefault("music_mute", false);
|
||||
ConfMan.registerDefault("sfx_mute", false);
|
||||
ConfMan.registerDefault("talkspeed", Logic::DEFAULT_TALK_SPEED);
|
||||
ConfMan.registerDefault("speech_mute", _resource->isFloppy());
|
||||
ConfMan.registerDefault("speech_mute", false);
|
||||
ConfMan.registerDefault("subtitles", true);
|
||||
}
|
||||
|
||||
@ -136,11 +136,6 @@ void QueenEngine::checkOptionSettings() {
|
||||
|
||||
// XXX check master_volume value
|
||||
|
||||
// only CD-ROM version has speech
|
||||
if (_resource->isFloppy() && _sound->speechOn()) {
|
||||
_sound->speechToggle(false);
|
||||
}
|
||||
|
||||
// ensure text is always on when voice is off
|
||||
if (!_sound->speechOn()) {
|
||||
_subtitles = true;
|
||||
|
Loading…
Reference in New Issue
Block a user