[Scummvm-cvs-logs] scummvm master -> cc079c739a428c3a85bfa7eb365e25f5cbcc3361

wjp wjp at usecode.org
Mon Dec 12 14:07:27 CET 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
cc079c739a DREAMWEB: Fix regression in rollEndCredits


Commit: cc079c739a428c3a85bfa7eb365e25f5cbcc3361
    https://github.com/scummvm/scummvm/commit/cc079c739a428c3a85bfa7eb365e25f5cbcc3361
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2011-12-12T05:03:35-08:00

Commit Message:
DREAMWEB: Fix regression in rollEndCredits

I had previously tested the wrong end credits by accident. Oops...

Changed paths:
    engines/dreamweb/sprite.cpp



diff --git a/engines/dreamweb/sprite.cpp b/engines/dreamweb/sprite.cpp
index f8f11d8..0d25618 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;
 			}






More information about the Scummvm-git-logs mailing list