diff options
author | Willem Jan Palenstijn | 2011-12-12 14:03:35 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-12-12 14:03:35 +0100 |
commit | cc079c739a428c3a85bfa7eb365e25f5cbcc3361 (patch) | |
tree | 4619849b93e23ad62a172b3c9e384f2f592828eb | |
parent | a5992d9b9f41fcebac02aab8597bf78226c14aed (diff) | |
download | scummvm-rg350-cc079c739a428c3a85bfa7eb365e25f5cbcc3361.tar.gz scummvm-rg350-cc079c739a428c3a85bfa7eb365e25f5cbcc3361.tar.bz2 scummvm-rg350-cc079c739a428c3a85bfa7eb365e25f5cbcc3361.zip |
DREAMWEB: Fix regression in rollEndCredits
I had previously tested the wrong end credits by accident. Oops...
-rw-r--r-- | engines/dreamweb/sprite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/sprite.cpp b/engines/dreamweb/sprite.cpp index f8f11d8df8..0d25618127 100644 --- a/engines/dreamweb/sprite.cpp +++ b/engines/dreamweb/sprite.cpp @@ -782,7 +782,7 @@ void DreamBase::rollEndCredits() { // Output up to 18 lines of text uint16 y = 10 - j; const uint8 *tmp_str = string; - for (int k = 0; k < 18; ++j) { + for (int k = 0; k < 18; ++k) { DreamBase::printDirect(&tmp_str, 75, &y, 160 + 1, true); y += linespacing; } |