diff options
Diffstat (limited to 'engines/avalanche/lucerna2.cpp')
-rw-r--r-- | engines/avalanche/lucerna2.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/avalanche/lucerna2.cpp b/engines/avalanche/lucerna2.cpp index 598ff63869..0fcdbcaa82 100644 --- a/engines/avalanche/lucerna2.cpp +++ b/engines/avalanche/lucerna2.cpp @@ -449,7 +449,7 @@ void Lucerna::enterRoom(byte room, byte ped) { if (_vm->_gyro->_dna._roomCount[r__outsideyours] == 1) { _vm->_animation->apped(2, 4); // Start on the right-hand side of the screen. - _vm->_animation->tr[1].walkto(5); // Walks up to greet you. + _vm->_animation->tr[1].walkTo(5); // Walks up to greet you. } else { _vm->_animation->apped(2, 5); // Starts where he was before. _vm->_animation->tr[1]._facingDir = Animation::kDirLeft; @@ -463,7 +463,7 @@ void Lucerna::enterRoom(byte room, byte ped) { if (_vm->_gyro->_dna._crapulusWillTell) { _vm->_animation->tr[1].init(8, false, _vm->_animation); _vm->_animation->apped(2, 2); - _vm->_animation->tr[1].walkto(4); + _vm->_animation->tr[1].walkTo(4); _vm->_timeout->addTimer(20, _vm->_timeout->kProcCrapulusSpludOut, _vm->_timeout->kReasonCrapulusSaysSpludwickOut); _vm->_gyro->_dna._crapulusWillTell = false; } @@ -508,7 +508,7 @@ void Lucerna::enterRoom(byte room, byte ped) { if (_vm->_gyro->_dna._roomCount[r__brummieroad] == 1) { // First time here... _vm->_animation->apped(2, 2); // He appears on the right of the screen... - _vm->_animation->tr[1].walkto(4); // ...and he walks up... + _vm->_animation->tr[1].walkTo(4); // ...and he walks up... } else { // You've been here before. _vm->_animation->apped(2, 4); // He's standing in your way straight away... @@ -523,7 +523,7 @@ void Lucerna::enterRoom(byte room, byte ped) { (_vm->_gyro->_dna._roomCount[r__argentroad] > 3)) { _vm->_animation->tr[1].init(4, false, _vm->_animation); // 4 = Cwytalot again _vm->_animation->apped(2, 1); - _vm->_animation->tr[1].walkto(2); + _vm->_animation->tr[1].walkTo(2); _vm->_animation->tr[1]._vanishIfStill = true; _vm->_gyro->_dna._passedCwytalotInHerts = true; // _vm->_gyro->whereis[#157] = r__Nowhere; // can we fit this in? @@ -547,7 +547,7 @@ void Lucerna::enterRoom(byte room, byte ped) { // A welcome party... or maybe not... _vm->_animation->tr[1].init(6, false, _vm->_animation); _vm->_animation->apped(2, 2); - _vm->_animation->tr[1].walkto(3); + _vm->_animation->tr[1].walkTo(3); _vm->_timeout->addTimer(36, _vm->_timeout->kProcGetTiedUp, _vm->_timeout->kReasonGettingTiedUp); } } @@ -571,7 +571,7 @@ void Lucerna::enterRoom(byte room, byte ped) { case 0 : { // You've answered NONE of his questions. _vm->_animation->tr[1].init(9, false, _vm->_animation); _vm->_animation->apped(2, 2); - _vm->_animation->tr[1].walkto(3); + _vm->_animation->tr[1].walkTo(3); _vm->_timeout->addTimer(47, _vm->_timeout->kProcCardiffSurvey, _vm->_timeout->kReasonCardiffsurvey); } break; @@ -710,7 +710,7 @@ void Lucerna::enterRoom(byte room, byte ped) { _vm->_animation->tr[1].init(11, false, _vm->_animation); if ((_vm->_gyro->_dna._roomCount[r__wisewomans] == 1) && (ped > 0)) { _vm->_animation->apped(2, 2); // Start on the right-hand side of the screen. - _vm->_animation->tr[1].walkto(4); // Walks up to greet you. + _vm->_animation->tr[1].walkTo(4); // Walks up to greet you. } else { _vm->_animation->apped(2, 4); // Starts where she was before. _vm->_animation->tr[1]._facingDir = Animation::kDirLeft; |