diff options
| author | uruk | 2013-09-01 17:15:55 +0200 | 
|---|---|---|
| committer | uruk | 2013-09-01 17:15:55 +0200 | 
| commit | 4d6573a80ebc2ca2aab356426ea50adf3ca77505 (patch) | |
| tree | 618bc392b1e0fe8c38d662379ebade9da050949b /engines/avalanche/avalanche.cpp | |
| parent | a9e9a8b9af29a0270f8feef19cac4da37743860d (diff) | |
| download | scummvm-rg350-4d6573a80ebc2ca2aab356426ea50adf3ca77505.tar.gz scummvm-rg350-4d6573a80ebc2ca2aab356426ea50adf3ca77505.tar.bz2 scummvm-rg350-4d6573a80ebc2ca2aab356426ea50adf3ca77505.zip | |
AVALANCHE: Start implementation of the drop-down menu.
Diffstat (limited to 'engines/avalanche/avalanche.cpp')
| -rw-r--r-- | engines/avalanche/avalanche.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp index 3c2fc49fa5..0c5869efbe 100644 --- a/engines/avalanche/avalanche.cpp +++ b/engines/avalanche/avalanche.cpp @@ -532,7 +532,7 @@ void AvalancheEngine::updateEvents() {  	while (_eventMan->pollEvent(event)) {  		switch (event.type) {  		case Common::EVENT_LBUTTONDOWN: -			_lucerna->holdLeftMouse = true; // Used in Lucerna::checkclick(). +			_lucerna->holdLeftMouse = true; // Used in Lucerna::checkclick() and Dropdown::checkclick().  			break;  		case Common::EVENT_LBUTTONUP:  			_lucerna->holdLeftMouse = false; // Same as above. | 
