aboutsummaryrefslogtreecommitdiff
path: root/engines/tucker/locations.cpp
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-03-02 22:52:41 +0100
committerAdrian Frühwirth2018-03-02 22:52:41 +0100
commit3de1ba11b3dff52a5449d6ef9435572238f16958 (patch)
treea0297f8dcdd9ee8692c8d184f894d82efca3e8c8 /engines/tucker/locations.cpp
parent5b89fd7dab3dfb5b4c30f12dde00aa203657cda6 (diff)
downloadscummvm-rg350-3de1ba11b3dff52a5449d6ef9435572238f16958.tar.gz
scummvm-rg350-3de1ba11b3dff52a5449d6ef9435572238f16958.tar.bz2
scummvm-rg350-3de1ba11b3dff52a5449d6ef9435572238f16958.zip
TUCKER: Use Verb enum in more places
Diffstat (limited to 'engines/tucker/locations.cpp')
-rw-r--r--engines/tucker/locations.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tucker/locations.cpp b/engines/tucker/locations.cpp
index dc7e43f209..28fca114b0 100644
--- a/engines/tucker/locations.cpp
+++ b/engines/tucker/locations.cpp
@@ -1350,7 +1350,7 @@ void TuckerEngine::updateSprite_locationNum21() {
void TuckerEngine::execData3PreUpdate_locationNum21() {
if (_xPosCurrent > 460 && _flagsTable[58] == 0 && _nextAction == 0) {
- _currentActionVerb = 0;
+ _currentActionVerb = kVerbWalk;
_pendingActionDelay = 0;
_flagsTable[59] = 1;
_nextAction = 2;
@@ -1754,7 +1754,7 @@ void TuckerEngine::execData3PreUpdate_locationNum28() {
_csDataLoaded = false;
_pendingActionDelay = 0;
_pendingActionIndex = 0;
- _currentActionVerb = 0;
+ _currentActionVerb = kVerbWalk;
}
}
@@ -2356,7 +2356,7 @@ void TuckerEngine::execData3PreUpdate_locationNum53() {
_csDataLoaded = false;
_pendingActionDelay = 0;
_pendingActionIndex = 0;
- _currentActionVerb = 0;
+ _currentActionVerb = kVerbWalk;
}
}