diff options
author | Adrian Frühwirth | 2018-04-22 00:49:39 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-04-22 00:56:21 +0200 |
commit | a20f90cbb7bfd61ee32ccd32603766de02c03ac8 (patch) | |
tree | 584197b20b101d746b64a20e3f1073b4b8808bb7 /engines/avalanche | |
parent | dd425413b5c69861fffe0071e6ca74b33a78c341 (diff) | |
download | scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.gz scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.bz2 scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.zip |
JANITORIAL: Fix formatting
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/dropdown.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/dropdown.cpp b/engines/avalanche/dropdown.cpp index 97adfc2581..ba4e452aaa 100644 --- a/engines/avalanche/dropdown.cpp +++ b/engines/avalanche/dropdown.cpp @@ -684,9 +684,9 @@ void DropDownMenu::update() { Common::Point cursorPos = _vm->getMousePos(); while (!_activeMenuItem._activeNow && (cursorPos.y <= 21) && _vm->_holdLeftMouse) { _menuBar.chooseMenuItem(cursorPos.x); - do + do { _vm->updateEvents(); - while (_vm->_holdLeftMouse && !_vm->shouldQuit()); + } while (_vm->_holdLeftMouse && !_vm->shouldQuit()); while (!_vm->shouldQuit()) { do { |