diff options
-rw-r--r-- | src/client.cpp | 7 | ||||
-rw-r--r-- | src/gui/sdlinput.cpp | 5 | ||||
-rw-r--r-- | src/inputmanager.cpp | 12 |
3 files changed, 24 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 871b5c873..17a846b86 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -981,6 +981,9 @@ int Client::gameExec() case SDL_KEYBOARDSHOW: updateScreenKeyboard(event.user.code); break; + + case SDL_ACCELEROMETER: + break; #endif default: @@ -2883,6 +2886,10 @@ void Client::logEvent(const SDL_Event &event) case SDL_USEREVENT: logger->log("event: SDL_USEREVENT"); break; +#ifdef ANDROID + case SDL_ACCELEROMETER: + logger->log("event: SDL_ACCELEROMETER"); +#endif default: logger->log("event: other: %d", event.type); break; diff --git a/src/gui/sdlinput.cpp b/src/gui/sdlinput.cpp index 4f5234e73..bf8bd040f 100644 --- a/src/gui/sdlinput.cpp +++ b/src/gui/sdlinput.cpp @@ -164,6 +164,11 @@ void SDLInput::pushInput(const SDL_Event &event) break; } +#ifdef ANDROID + case SDL_ACCELEROMETER: + break; +#endif + case SDL_MOUSEBUTTONDOWN: mMouseDown = true; mouseInput.setX(event.button.x); diff --git a/src/inputmanager.cpp b/src/inputmanager.cpp index 38a743822..cd72f0ad5 100644 --- a/src/inputmanager.cpp +++ b/src/inputmanager.cpp @@ -487,6 +487,12 @@ bool InputManager::handleEvent(const SDL_Event &event) // joystick.handleDeActicateButton(event); break; } +#ifdef ANDROID + case SDL_ACCELEROMETER: + { + break; + } +#endif default: break; } @@ -522,6 +528,12 @@ bool InputManager::handleEvent(const SDL_Event &event) return true; } break; +#ifdef ANDROID + case SDL_ACCELEROMETER: + { + break; + } +#endif default: break; } |