[Scummvm-cvs-logs] CVS: residual actor.cpp,1.3,1.4

James Brown ender at users.sourceforge.net
Wed Aug 20 00:04:07 CEST 2003


Update of /cvsroot/scummvm/residual
In directory sc8-pr-cvs1:/tmp/cvs-serv5634

Modified Files:
	actor.cpp 
Log Message:
'De-Flea' Manny (Disable talk animation experiment until I work out why the wrong Chores are playing)


Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/residual/actor.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- actor.cpp	19 Aug 2003 17:51:36 -0000	1.3
+++ actor.cpp	20 Aug 2003 06:59:11 -0000	1.4
@@ -71,18 +71,20 @@
   if (talkSound_ != NULL)
     Mixer::instance()->playVoice(talkSound_);
 
-  if (!costumeStack_.empty()) {
-    printf("Requesting talk chore\n");
-    costumeStack_.back()->playTalkChores();
-  }
+// FIXME: Ender - Disabled until I work out why the wrong Chores play
+//  if (!costumeStack_.empty()) {
+//    printf("Requesting talk chore\n");
+//    costumeStack_.back()->playTalkChores();
+//  }
 }
 
 bool Actor::talking() {
   if (talkSound_ == NULL)
     return false;
   if (talkSound_->done()) {
-    if (!costumeStack_.empty())
-      costumeStack_.back()->stopTalkChores();
+// FIXME: Ender - Disabled until I work out why the wrong Chores play
+//    if (!costumeStack_.empty())
+//      costumeStack_.back()->stopTalkChores();
     talkSound_ = NULL;
     return false;
   }





More information about the Scummvm-git-logs mailing list