aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/timer.cpp')
-rw-r--r--engines/avalanche/timer.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/avalanche/timer.cpp b/engines/avalanche/timer.cpp
index 1fc69a278b..ae9481c9c1 100644
--- a/engines/avalanche/timer.cpp
+++ b/engines/avalanche/timer.cpp
@@ -324,7 +324,7 @@ void Timer::hangAround() {
AnimationType *avvy = &_vm->_animation->_sprites[0];
avvy->init(7, true, _vm->_animation); // Robin Hood
- _vm->_avalot->_whereIs[Avalot::kPeopleRobinHood - 150] = kRoomRobins;
+ _vm->_avalot->_whereIs[kPeopleRobinHood - 150] = kRoomRobins;
_vm->_animation->appearPed(0, 1);
_vm->_dialogs->displayScrollChain('q', 39);
avvy->walkTo(6);
@@ -336,7 +336,7 @@ void Timer::hangAround2() {
AnimationType *spr = &_vm->_animation->_sprites[1];
spr->_vanishIfStill = false;
spr->walkTo(3);
- _vm->_avalot->_whereIs[Avalot::kPeopleFriarTuck - 150] = kRoomRobins;
+ _vm->_avalot->_whereIs[kPeopleFriarTuck - 150] = kRoomRobins;
_vm->_dialogs->displayScrollChain('q', 41);
_vm->_animation->_sprites[0].remove();
spr->remove(); // Get rid of Robin Hood and Friar Tuck.
@@ -356,7 +356,7 @@ void Timer::afterTheShootemup() {
_vm->_animation->_sprites[0].init(0, true, _vm->_animation); // Avalot.
_vm->_animation->appearPed(0, 1);
_vm->_avalot->_userMovesAvvy = true;
- _vm->_avalot->_objects[Avalot::kObjectCrossbow - 1] = true;
+ _vm->_avalot->_objects[kObjectCrossbow - 1] = true;
_vm->_avalot->refreshObjectList();
// Same as the added line above: TODO: Remove it later!!!
@@ -400,7 +400,7 @@ void Timer::jacquesWakesUp() {
case 3 : // Gone through the door.
_vm->_background->drawBackgroundSprite(-1, -1, 1); // Not on the floor, either.
_vm->_background->drawBackgroundSprite(-1, -1, 3); // He's gone... so the door's open.
- _vm->_avalot->_whereIs[Avalot::kPeopleJacques - 150] = 0; // Gone!
+ _vm->_avalot->_whereIs[kPeopleJacques - 150] = 0; // Gone!
break;
}
@@ -489,7 +489,7 @@ void Timer::jump() {
else {
_vm->_background->drawBackgroundSprite(-1, -1, 1);
_vm->_avalot->_arrowInTheDoor = false; // You've got it.
- _vm->_avalot->_objects[Avalot::kObjectBolt - 1] = true;
+ _vm->_avalot->_objects[kObjectBolt - 1] = true;
_vm->_avalot->refreshObjectList();
_vm->_dialogs->displayScrollChain('q', 50);
_vm->_avalot->incScore(3);
@@ -522,7 +522,7 @@ void Timer::buyWine() {
_vm->_dialogs->displayScrollChain('D', 1); // It'll be thruppence.
if (_vm->_avalot->decreaseMoney(3)) {
_vm->_dialogs->displayScrollChain('D', 4); // You paid up.
- _vm->_avalot->_objects[Avalot::kObjectWine - 1] = true;
+ _vm->_avalot->_objects[kObjectWine - 1] = true;
_vm->_avalot->refreshObjectList();
_vm->_avalot->_wineState = 1; // OK Wine.
}