diff options
Diffstat (limited to 'engines/avalanche/lucerna2.cpp')
-rw-r--r-- | engines/avalanche/lucerna2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/lucerna2.cpp b/engines/avalanche/lucerna2.cpp index 3f86eb5ed8..1b4d83556b 100644 --- a/engines/avalanche/lucerna2.cpp +++ b/engines/avalanche/lucerna2.cpp @@ -281,9 +281,9 @@ void Lucerna::find_people(byte room) { for (byte fv = 1; fv < 29; fv++) // There'll may be problems with this. if (_vm->_gyro->whereis[fv] == room) { if (fv < 25) // And this. See definition of whereis[]. - _vm->_gyro->him = fv; + _vm->_gyro->him = fv + 150; else - _vm->_gyro->her = fv; + _vm->_gyro->her = fv + 150; } } |