Don't allow the user to enable speech for non-talkie versions.

svn-id: r16097
This commit is contained in:
Joost Peters 2004-12-17 13:49:54 +00:00
parent 5f04dfe0b9
commit 356b11aae7

View File

@ -247,7 +247,10 @@ void Journal::handleNormalMode(int16 zoneNum, int x) {
}
drawConfigPanel();
} else if (zoneNum == ZN_VOICE_TOGGLE) {
_vm->sound()->toggleSpeech();
if (_vm->resource()->isCD())
_vm->sound()->toggleSpeech();
else
_vm->sound()->speechToggle(false);
drawConfigPanel();
} else if (zoneNum == ZN_TEXT_TOGGLE) {
_vm->subtitles(!_vm->subtitles());