diff options
author | vyadh | 2013-02-17 22:11:11 +0000 |
---|---|---|
committer | vyadh | 2013-02-17 22:11:11 +0000 |
commit | 348378f4a672e1b3e79ac21f56661abaa257c699 (patch) | |
tree | 3ac5d610ed36f5c4cde51a2c8082e3ccd1f88d17 | |
parent | 61ec6c998ff839900ce3157c324a133dfbaae4c0 (diff) | |
download | scummvm-rg350-348378f4a672e1b3e79ac21f56661abaa257c699.tar.gz scummvm-rg350-348378f4a672e1b3e79ac21f56661abaa257c699.tar.bz2 scummvm-rg350-348378f4a672e1b3e79ac21f56661abaa257c699.zip |
LURE: Fix bug #3604370 - ANDROID menus clickable
LURE: Fix bug #3604370 - "LURE: ANDROID, Action item scrolling too sensitive"
-rw-r--r-- | engines/lure/menu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/menu.cpp b/engines/lure/menu.cpp index 5a0dd26cba..93deecdcd6 100644 --- a/engines/lure/menu.cpp +++ b/engines/lure/menu.cpp @@ -31,7 +31,7 @@ #include "lure/events.h" #include "lure/lure.h" -#if defined(_WIN32_WCE) || defined(__SYMBIAN32__) || defined(WEBOS) +#if defined(_WIN32_WCE) || defined(__SYMBIAN32__) || defined(WEBOS) || defined(__ANDROID__) #define LURE_CLICKABLE_MENUS #endif |