aboutsummaryrefslogtreecommitdiff
path: root/queen/talk.cpp
diff options
context:
space:
mode:
authorGregory Montoir2003-12-11 13:26:13 +0000
committerGregory Montoir2003-12-11 13:26:13 +0000
commit3174cef1273fb3ff266e8a06f3f89cdd7751855d (patch)
treebbd03e06c4396dbbba0776376fedf7091c10f411 /queen/talk.cpp
parent9f465dab04138478ab143a3d7ab46550a701f06e (diff)
downloadscummvm-rg350-3174cef1273fb3ff266e8a06f3f89cdd7751855d.tar.gz
scummvm-rg350-3174cef1273fb3ff266e8a06f3f89cdd7751855d.tar.bz2
scummvm-rg350-3174cef1273fb3ff266e8a06f3f89cdd7751855d.zip
merged Logic::joeGrab & Logic::joeGrabDirection and removed speed argument as it always equals 0
svn-id: r11582
Diffstat (limited to 'queen/talk.cpp')
-rw-r--r--queen/talk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/queen/talk.cpp b/queen/talk.cpp
index 0ce91e6078..368be4491c 100644
--- a/queen/talk.cpp
+++ b/queen/talk.cpp
@@ -540,10 +540,10 @@ int Talk::getSpeakCommand(const char *sentence, unsigned &index) {
case 'G':
switch (sentence[index + 1]) {
case 'D':
- _logic->joeGrabDirection(STATE_GRAB_DOWN, 0);
+ _logic->joeGrab(STATE_GRAB_DOWN);
break;
case 'M':
- _logic->joeGrabDirection(STATE_GRAB_MID, 0);
+ _logic->joeGrab(STATE_GRAB_MID);
break;
default:
warning("Unknown command string: '%2s'", sentence + index);