aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/entities/entity.cpp
diff options
context:
space:
mode:
authorJulien Templier2010-10-21 23:44:59 +0000
committerJulien Templier2010-10-21 23:44:59 +0000
commit002557fbd2575e2cdb82e19c9909a4c654593139 (patch)
treef49a8e73902cfdc6ba5bbb63a57d80360a183217 /engines/lastexpress/entities/entity.cpp
parent4466e2a20db1ef0ec92b12dc631d1593c315e471 (diff)
downloadscummvm-rg350-002557fbd2575e2cdb82e19c9909a4c654593139.tar.gz
scummvm-rg350-002557fbd2575e2cdb82e19c9909a4c654593139.tar.bz2
scummvm-rg350-002557fbd2575e2cdb82e19c9909a4c654593139.zip
LASTEXPRESS: Rename CURRENT_PARAMS to CURRENT_PARAM
svn-id: r53691
Diffstat (limited to 'engines/lastexpress/entities/entity.cpp')
-rw-r--r--engines/lastexpress/entities/entity.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/lastexpress/entities/entity.cpp b/engines/lastexpress/entities/entity.cpp
index 8400c38737..502fecac84 100644
--- a/engines/lastexpress/entities/entity.cpp
+++ b/engines/lastexpress/entities/entity.cpp
@@ -345,22 +345,22 @@ void Entity::callSavepoint(const SavePoint &savepoint, bool handleExcuseMe) {
break;
case kActionExitCompartment:
- if (!CURRENT_PARAMS(1, 1))
+ if (!CURRENT_PARAM(1, 1))
getSavePoints()->call(_entityIndex, (EntityIndex)params->param4, (ActionIndex)params->param5, (char *)&params->seq2);
CALLBACK_ACTION();
break;
case kActionExcuseMeCath:
- if (handleExcuseMe && !CURRENT_PARAMS(1, 2)) {
+ if (handleExcuseMe && !CURRENT_PARAM(1, 2)) {
getSound()->excuseMe(_entityIndex);
- CURRENT_PARAMS(1, 2) = 1;
+ CURRENT_PARAM(1, 2) = 1;
}
break;
case kAction10:
- if (!CURRENT_PARAMS(1, 1)) {
+ if (!CURRENT_PARAM(1, 1)) {
getSavePoints()->call(_entityIndex, (EntityIndex)params->param4, (ActionIndex)params->param5, (char *)&params->seq2);
- CURRENT_PARAMS(1, 1) = 1;
+ CURRENT_PARAM(1, 1) = 1;
}
break;