diff options
author | uruk | 2013-09-07 18:40:15 +0200 |
---|---|---|
committer | uruk | 2013-09-07 18:40:15 +0200 |
commit | 9097e801537e0e80f2d7df7938f79d145ee362df (patch) | |
tree | 5e84194e80c2f075c318ee261e7008aa8d4f12d3 /engines | |
parent | 0ad51df7d92857d7b526a09b6d1558e34e01f959 (diff) | |
download | scummvm-rg350-9097e801537e0e80f2d7df7938f79d145ee362df.tar.gz scummvm-rg350-9097e801537e0e80f2d7df7938f79d145ee362df.tar.bz2 scummvm-rg350-9097e801537e0e80f2d7df7938f79d145ee362df.zip |
AVALANCHE: Minor cosmetic fixes in Lucerna.
Diffstat (limited to 'engines')
-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 1f968db055..0c2e01ae18 100644 --- a/engines/avalanche/lucerna2.cpp +++ b/engines/avalanche/lucerna2.cpp @@ -1020,13 +1020,13 @@ void Lucerna::refreshObjectList() { } void Lucerna::guideAvvy(Common::Point cursorPos) { - if (! _vm->_gyro->_dna._userMovesAvvy) + if (!_vm->_gyro->_dna._userMovesAvvy) return; cursorPos.y /= 2; byte what; - // _vm->_trip->tr[0] : that's the only one we're interested in here. (It's Avalot.) + // _vm->_trip->tr[0] is Avalot.) if (cursorPos.x < _vm->_trip->tr[0].x) what = 1; else if (cursorPos.x > (_vm->_trip->tr[0].x + _vm->_trip->tr[0]._info._xLength)) |