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

wjp wjp at usecode.org
Mon Dec 26 17:27:46 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:
c60ce59aa4 DREAMWEB: Fix regression in transferToEx


Commit: c60ce59aa443471f22f9254dd6bc3810324cd672
    https://github.com/scummvm/scummvm/commit/c60ce59aa443471f22f9254dd6bc3810324cd672
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2011-12-26T08:27:17-08:00

Commit Message:
DREAMWEB: Fix regression in transferToEx

Changed paths:
    engines/dreamweb/object.cpp



diff --git a/engines/dreamweb/object.cpp b/engines/dreamweb/object.cpp
index a7a7814..b246323 100644
--- a/engines/dreamweb/object.cpp
+++ b/engines/dreamweb/object.cpp
@@ -1052,7 +1052,7 @@ byte DreamGenContext::transferToEx() {
 	freeObject = getFreeAd(data.byte(kItemframe));
 	freeObject->mapad[0] = 254;
 	ds = data.word(kFreedat);
-	si = data.byte(kItemframe);
+	si = data.byte(kItemframe) * sizeof(DynObject);
 	pickupConts();
 	return pos;
 }






More information about the Scummvm-git-logs mailing list