diff options
Diffstat (limited to 'engines/titanic/events.cpp')
-rw-r--r-- | engines/titanic/events.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/events.cpp b/engines/titanic/events.cpp index 1f8ccce0dd..5202d7cb9c 100644 --- a/engines/titanic/events.cpp +++ b/engines/titanic/events.cpp @@ -102,8 +102,8 @@ uint32 Events::getTicksCount() const { return g_system->getMillis(); } -#define HANDLE_MESSAGE(method) if (_vm->_window->_inputAllowed) { \ - _vm->_window->_gameManager->_inputTranslator.leftButtonDown(_specialButtons, Point(_mousePos.x, _mousePos.y)); \ +#define HANDLE_MESSAGE(METHOD) if (_vm->_window->_inputAllowed) { \ + _vm->_window->_gameManager->_inputTranslator.METHOD(_specialButtons, Point(_mousePos.x, _mousePos.y)); \ _vm->_window->mouseChanged(); \ } |