[Scummvm-cvs-logs] scummvm master -> 1f348745b00bb2f3fc3bc37d30221ab2f229b28d

bluegr md5 at scummvm.org
Thu Dec 15 11:25:36 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:
1f348745b0 DREAMWEB: Fix regression in describeOb()


Commit: 1f348745b00bb2f3fc3bc37d30221ab2f229b28d
    https://github.com/scummvm/scummvm/commit/1f348745b00bb2f3fc3bc37d30221ab2f229b28d
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2011-12-15T02:24:48-08:00

Commit Message:
DREAMWEB: Fix regression in describeOb()

Changed paths:
    engines/dreamweb/stubs.cpp



diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index e721d48..0c57d0d 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -3402,11 +3402,12 @@ void DreamGenContext::describeOb() {
 	if (data.byte(kForeignrelease) && data.byte(kObjecttype) == 1)
 		y = 82;
 	data.word(kCharshift) = 91 + 91;
-	printDirect(obText, 33, y, 241, 241 & 1);
+	printDirect(&obText, 33, &y, 241, 241 & 1);
 	data.word(kCharshift) = 0;
+	y = 104;
 	if (data.byte(kForeignrelease) && data.byte(kObjecttype) == 1)
 		y = 94;
-	printDirect(obText, 36, y, 241, 241 & 1);
+	printDirect(&obText, 36, &y, 241, 241 & 1);
 	obsThatDoThings();
 
 	// Additional text






More information about the Scummvm-git-logs mailing list