aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Eriksson2003-11-13 09:51:49 +0000
committerDavid Eriksson2003-11-13 09:51:49 +0000
commitd655603005782469441b358ec538b5a5fcbce9e7 (patch)
treefaba93d39e6669e8d897ba608113dc3334915436
parentf6a9259ab3ae4ca268a32d6c84640295ece449af (diff)
downloadscummvm-rg350-d655603005782469441b358ec538b5a5fcbce9e7.tar.gz
scummvm-rg350-d655603005782469441b358ec538b5a5fcbce9e7.tar.bz2
scummvm-rg350-d655603005782469441b358ec538b5a5fcbce9e7.zip
Small talk fixes.
There is some bug with the body action. svn-id: r11279
-rw-r--r--queen/talk.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/queen/talk.cpp b/queen/talk.cpp
index 8d3af3e126..10e1453bdb 100644
--- a/queen/talk.cpp
+++ b/queen/talk.cpp
@@ -549,10 +549,10 @@ int Talk::getSpeakCommand(const char *sentence, unsigned &index) {
case 'G':
switch (sentence[index + 1]) {
case 'D':
- // XXX GRAB_DIR("DOWN",0);
+ _logic->joeGrabDirection(STATE_GRAB_DOWN, 0);
break;
case 'M':
- // XXX GRAB_DIR("MID",0);
+ _logic->joeGrabDirection(STATE_GRAB_MID, 0);
break;
default:
warning("Unknown command string: '%2s'", sentence + index);
@@ -849,6 +849,7 @@ void Talk::defaultAnimation(
}
}
else {
+ debug(0, "Body action!");
// Just do a body action
_graphics->bankOverpack(parameters->body, startFrame, bankNum);
}