diff options
author | Willem Jan Palenstijn | 2012-02-12 22:31:05 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2012-02-12 23:56:37 +0100 |
commit | 3abb3ad757848d2899308b52bf642211c201d154 (patch) | |
tree | 9f6e93d794b6a08e3ff1973960ce2893c45b2637 /engines | |
parent | 24e50eb218db5de3bad806737cba247798112a2a (diff) | |
download | scummvm-rg350-3abb3ad757848d2899308b52bf642211c201d154.tar.gz scummvm-rg350-3abb3ad757848d2899308b52bf642211c201d154.tar.bz2 scummvm-rg350-3abb3ad757848d2899308b52bf642211c201d154.zip |
DREAMWEB: Fix duplicate line in monk end sequence
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/titles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/titles.cpp b/engines/dreamweb/titles.cpp index aa0f3bd799..96dabc9b40 100644 --- a/engines/dreamweb/titles.cpp +++ b/engines/dreamweb/titles.cpp @@ -52,7 +52,7 @@ void DreamWebEngine::monkSpeaking() { hangOn(300); if (hasSpeech()) { - for (int i = 40; i <= 48; i++) { + for (int i = 40; i < 48; i++) { loadSpeech('T', 83, 'T', i); playChannel1(50 + 12); |