diff options
author | Eugene Sandulenko | 2005-09-06 01:36:27 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-09-06 01:36:27 +0000 |
commit | 69920fd6e4a04514301dd4365473b4cdefd78880 (patch) | |
tree | 74c0a81792a32484843e30e040d70ce9c5268950 /saga | |
parent | 583cb05cb4c8c302d17d2eedb5a3ff1cbbae89bd (diff) | |
download | scummvm-rg350-69920fd6e4a04514301dd4365473b4cdefd78880.tar.gz scummvm-rg350-69920fd6e4a04514301dd4365473b4cdefd78880.tar.bz2 scummvm-rg350-69920fd6e4a04514301dd4365473b4cdefd78880.zip |
Force subtitles to be shown in floppy version.
svn-id: r18779
Diffstat (limited to 'saga')
-rw-r--r-- | saga/actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/actor.cpp b/saga/actor.cpp index fdd9f82064..d3607aad1a 100644 --- a/saga/actor.cpp +++ b/saga/actor.cpp @@ -1608,7 +1608,7 @@ void Actor::drawActors() { void Actor::drawSpeech(void) { if (!isSpeaking() || !_activeSpeech.playing || _vm->_script->_skipSpeeches - || !_vm->_subtitlesEnabled) + || (!_vm->_subtitlesEnabled && (_vm->getFeatures() & GF_CD_FX))) return; int i; |