aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/actor.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2006-06-11 20:30:43 +0000
committerEugene Sandulenko2006-06-11 20:30:43 +0000
commitde95d463a8c091ea55a8ae8166fb447a9f56a195 (patch)
tree4a2d0e93f714439be7846b094b9f38afa252966e /engines/saga/actor.cpp
parentfd7e9847fcfa79fe8a76f97b720956a59b91d8c2 (diff)
downloadscummvm-rg350-de95d463a8c091ea55a8ae8166fb447a9f56a195.tar.gz
scummvm-rg350-de95d463a8c091ea55a8ae8166fb447a9f56a195.tar.bz2
scummvm-rg350-de95d463a8c091ea55a8ae8166fb447a9f56a195.zip
Support of new subtitles code. Patch from salty-horse.
svn-id: r23031
Diffstat (limited to 'engines/saga/actor.cpp')
-rw-r--r--engines/saga/actor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/saga/actor.cpp b/engines/saga/actor.cpp
index f87958ef53..0f7e40f480 100644
--- a/engines/saga/actor.cpp
+++ b/engines/saga/actor.cpp
@@ -1148,13 +1148,13 @@ void Actor::handleSpeech(int msec) {
if (sampleLength < 0) {
_activeSpeech.playingTime = stringLength * 1000 / 22;
switch (_vm->_readingSpeed) {
- case 1:
+ case 2:
_activeSpeech.playingTime *= 2;
break;
- case 2:
+ case 1:
_activeSpeech.playingTime *= 4;
break;
- case 3:
+ case 0:
_activeSpeech.playingTime = 0x7fffff;
break;
}