mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
Don't allow the user to enable speech for non-talkie versions.
svn-id: r16097
This commit is contained in:
parent
5f04dfe0b9
commit
356b11aae7
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user