[Scummvm-cvs-logs] scummvm master -> 218f47a7f2301bdc5cceee445c2217a39727dca7
wjp
wjp at usecode.org
Wed Dec 7 09:58:12 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:
218f47a7f2 DREAMWEB: Fix regression in keeper
Commit: 218f47a7f2301bdc5cceee445c2217a39727dca7
https://github.com/scummvm/scummvm/commit/218f47a7f2301bdc5cceee445c2217a39727dca7
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2011-12-07T00:57:38-08:00
Commit Message:
DREAMWEB: Fix regression in keeper
Changed paths:
engines/dreamweb/people.cpp
diff --git a/engines/dreamweb/people.cpp b/engines/dreamweb/people.cpp
index 41b4fa3..6e2128e 100644
--- a/engines/dreamweb/people.cpp
+++ b/engines/dreamweb/people.cpp
@@ -364,7 +364,7 @@ void DreamGenContext::keeper(ReelRoutine &routine) {
data.byte(kKeeperflag)++;
- if (routine.b7 & 127 != data.byte(kDreamnumber))
+ if ((routine.b7 & 127) != data.byte(kDreamnumber))
routine.b7 = data.byte(kDreamnumber);
}
More information about the Scummvm-git-logs
mailing list