[Scummvm-cvs-logs] scummvm master -> 6f2f8976ccbaeff14667373712adfdba526b5bf2

bluegr md5 at scummvm.org
Tue Dec 6 17:34:45 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:
6f2f8976cc DREAMWEB: Fix regression in useObject() from f2829a6


Commit: 6f2f8976ccbaeff14667373712adfdba526b5bf2
    https://github.com/scummvm/scummvm/commit/6f2f8976ccbaeff14667373712adfdba526b5bf2
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2011-12-06T08:33:42-08:00

Commit Message:
DREAMWEB: Fix regression in useObject() from f2829a6

Changed paths:
    engines/dreamweb/use.cpp



diff --git a/engines/dreamweb/use.cpp b/engines/dreamweb/use.cpp
index 96df77b..e37e8d4 100644
--- a/engines/dreamweb/use.cpp
+++ b/engines/dreamweb/use.cpp
@@ -877,7 +877,7 @@ void DreamGenContext::useObject() {
 
 	if (data.byte(kCommandtype) != 229) {
 		data.byte(kCommandtype) = 229;
-		commandWithOb(data.byte(kCommand), data.byte(kObjecttype), 51);
+		commandWithOb(51, data.byte(kObjecttype), data.byte(kCommand));
 	}
 
 	if (data.word(kMousebutton) == data.word(kOldbutton))






More information about the Scummvm-git-logs mailing list