diff options
author | uruk | 2013-07-29 12:05:16 +0200 |
---|---|---|
committer | uruk | 2013-07-29 12:05:16 +0200 |
commit | b182fd814ecd0d70ea4c34cbe2d188b363df94ed (patch) | |
tree | 7ab216898b1c7fd3604644f26fdd09298912efb2 /engines | |
parent | e32110339e710072b2f3bbf12b3248d26f2a6032 (diff) | |
download | scummvm-rg350-b182fd814ecd0d70ea4c34cbe2d188b363df94ed.tar.gz scummvm-rg350-b182fd814ecd0d70ea4c34cbe2d188b363df94ed.tar.bz2 scummvm-rg350-b182fd814ecd0d70ea4c34cbe2d188b363df94ed.zip |
AVALANCHE: Partially implement Acci::stand_up(), repair Acci::parse().
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/acci2.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/avalanche/acci2.cpp b/engines/avalanche/acci2.cpp index 1f237a8a89..9a86333d0e 100644 --- a/engines/avalanche/acci2.cpp +++ b/engines/avalanche/acci2.cpp @@ -514,7 +514,7 @@ void Acci::parse() { replace(Common::String(255), 0); /* zap noise words */ replace(Common::String(13) + 226, 1); // "look at" = "examine" replace(Common::String(13) + 228, 1); // "look in" = "examine" - replace(Common::String(4) + 227, 17); // "get up" = "stand" + replace(Common::String(4) + 230, 17); // "get up" = "stand" replace(Common::String(4) + 231, 17); // "get down" = "stand"... well, why not? replace(Common::String(18) + 228, 2); // "go in" = "open [door]" replace(Common::String(28) + 229, 253); // "P' off" is a swear word @@ -946,11 +946,11 @@ void Acci::stand_up() { _vm->_gyro->background(0); _vm->_visa->dixi('d', 14); } - _vm->_trip->tr[1].visible = true; + _vm->_trip->tr[0].visible = true; _vm->_gyro->dna.user_moves_avvy = true; - _vm->_trip->apped(1, 2); + _vm->_trip->apped(0, 1); _vm->_gyro->dna.rw = _vm->_gyro->left; - _vm->_celer->show_one(4); /* Picture of empty pillow. */ + _vm->_celer->show_one(3); /* Picture of empty pillow. */ _vm->_lucerna->points(1); _vm->_gyro->dna.avvy_in_bed = false; _vm->_timeout->lose_timer(_vm->_timeout->reason_arkata_shouts); |