diff options
author | Strangerke | 2013-09-04 12:38:19 +0200 |
---|---|---|
committer | Strangerke | 2013-09-04 12:38:19 +0200 |
commit | 53d9848f6625b390b3898c18cabf610439e2bba6 (patch) | |
tree | 410fb7f02af7ea4b6582f73c92ac08dbd6625460 /engines | |
parent | 8c8990368e84d154888e9754b992ff7a8db6393f (diff) | |
download | scummvm-rg350-53d9848f6625b390b3898c18cabf610439e2bba6.tar.gz scummvm-rg350-53d9848f6625b390b3898c18cabf610439e2bba6.tar.bz2 scummvm-rg350-53d9848f6625b390b3898c18cabf610439e2bba6.zip |
AVALANCHE: Fix bug in openDoor()
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/acci2.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/avalanche/acci2.cpp b/engines/avalanche/acci2.cpp index cd244e6d95..d869fe46e3 100644 --- a/engines/avalanche/acci2.cpp +++ b/engines/avalanche/acci2.cpp @@ -915,7 +915,7 @@ void Acci::openDoor() { break; case r__spludwicks: if (_thing == 61) { - _vm->_visa->dixi('pos', 85); + _vm->_visa->dixi('q', 85); return; } break; @@ -932,7 +932,7 @@ void Acci::openDoor() { switch (_vm->_gyro->portals[fv].op) { case Gyro::exclaim: _vm->_trip->tr[0].bounce(); - _vm->_visa->dixi('word', _vm->_gyro->portals[fv].data); + _vm->_visa->dixi('x', _vm->_gyro->portals[fv].data); break; case Gyro::transport: _vm->_trip->fliproom((_vm->_gyro->portals[fv].data) >> 8 /*High byte*/, (_vm->_gyro->portals[fv].data) & 0x0F /*Low byte*/); @@ -954,8 +954,7 @@ void Acci::openDoor() { if (_vm->_gyro->dna.room == r__map) _vm->_scrolls->display(Common::String("Avvy, you can complete the whole game without ever going " - "to anywhere other than Argent, Birmingham, Cardiff, " - "Nottingham and Norwich.")); + "to anywhere other than Argent, Birmingham, Cardiff, Nottingham and Norwich.")); else _vm->_scrolls->display("Door? What door?"); } |