[Scummvm-cvs-logs] scummvm master -> 832952d118b823d393a9dac78e21e7d37e4fab99
bluegr
md5 at scummvm.org
Mon Dec 5 22:56:56 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:
832952d118 DREAMWEB: Use the correct showGameReel() and addToPeopleList() functions
Commit: 832952d118b823d393a9dac78e21e7d37e4fab99
https://github.com/scummvm/scummvm/commit/832952d118b823d393a9dac78e21e7d37e4fab99
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2011-12-05T13:56:08-08:00
Commit Message:
DREAMWEB: Use the correct showGameReel() and addToPeopleList() functions
Changed paths:
engines/dreamweb/people.cpp
diff --git a/engines/dreamweb/people.cpp b/engines/dreamweb/people.cpp
index e6e9738..1d0e77f 100644
--- a/engines/dreamweb/people.cpp
+++ b/engines/dreamweb/people.cpp
@@ -412,16 +412,16 @@ void DreamGenContext::edenInBath(ReelRoutine &routine) {
if (data.byte(kGeneraldead) == 0 || data.byte(kSartaindead) != 0)
return;
- showGameReel();
- addToPeopleList();
+ showGameReel(&routine);
+ addToPeopleList(&routine);
}
void DreamGenContext::louis(ReelRoutine &routine) {
if (data.byte(kRockstardead) != 0)
return;
- showGameReel();
- addToPeopleList();
+ showGameReel(&routine);
+ addToPeopleList(&routine);
}
} /*namespace dreamgen */
More information about the Scummvm-git-logs
mailing list