aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalanche.cpp
diff options
context:
space:
mode:
authoruruk2013-09-07 18:00:00 +0200
committeruruk2013-09-07 18:00:00 +0200
commit467a7b1cce55680bddbae18fe655b386a4f3d051 (patch)
tree5def8e0d10c860b93d7ec1f7a7527941e9fea363 /engines/avalanche/avalanche.cpp
parent2bed64b447516f1f702fd70952a9886fac454b0d (diff)
downloadscummvm-rg350-467a7b1cce55680bddbae18fe655b386a4f3d051.tar.gz
scummvm-rg350-467a7b1cce55680bddbae18fe655b386a4f3d051.tar.bz2
scummvm-rg350-467a7b1cce55680bddbae18fe655b386a4f3d051.zip
AVALANCHE: Introduce a new class: Clock.
Diffstat (limited to 'engines/avalanche/avalanche.cpp')
-rw-r--r--engines/avalanche/avalanche.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp
index fbdeb2583b..27cfdd1178 100644
--- a/engines/avalanche/avalanche.cpp
+++ b/engines/avalanche/avalanche.cpp
@@ -525,10 +525,10 @@ void AvalancheEngine::updateEvents() {
while (_eventMan->pollEvent(event)) {
switch (event.type) {
case Common::EVENT_LBUTTONDOWN:
- _lucerna->holdLeftMouse = true; // Used in Lucerna::checkclick() and Dropdown::menu_link().
+ _lucerna->_holdLeftMouse = true; // Used in Lucerna::checkclick() and Dropdown::menu_link().
break;
case Common::EVENT_LBUTTONUP:
- _lucerna->holdLeftMouse = false; // Same as above.
+ _lucerna->_holdLeftMouse = false; // Same as above.
break;
case Common::EVENT_KEYDOWN:
_avalot->handleKeyDown(event);