diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-08 13:24:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-08 13:24:32 +0300 |
commit | 4c404e75a4e36d2d3151200e09990a9b6e82dacf (patch) | |
tree | f09098372090d6c788b5f3493848f881a111b366 | |
parent | b13beb3c1d965dd1a2a8dd3bdbea3d66242c3298 (diff) | |
download | plus-4c404e75a4e36d2d3151200e09990a9b6e82dacf.tar.gz plus-4c404e75a4e36d2d3151200e09990a9b6e82dacf.tar.bz2 plus-4c404e75a4e36d2d3151200e09990a9b6e82dacf.tar.xz plus-4c404e75a4e36d2d3151200e09990a9b6e82dacf.zip |
fix compilation warnings.
-rw-r--r-- | src/eventsmanager.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/eventsmanager.cpp b/src/eventsmanager.cpp index 0a626e5e5..1cc73178b 100644 --- a/src/eventsmanager.cpp +++ b/src/eventsmanager.cpp @@ -194,8 +194,10 @@ void EventsManager::logEvent(const SDL_Event &event) const SDL_TouchFingerEvent &touch = event.tfinger; const int w = mainGraphics->mWidth; const int h = mainGraphics->mHeight; - logger->log("event: SDL_FINGERDOWN: %lld,%lld (%f,%f) (%f,%f)", - touch.touchId, touch.fingerId, touch.x * w, touch.y * w, + logger->log("event: SDL_FINGERDOWN: %u,%u (%f,%f) (%f,%f)", + static_cast<unsigned int>(touch.touchId), + static_cast<unsigned int>(touch.fingerId), + touch.x * w, touch.y * w, touch.dx * w, touch.dy * h); break; } @@ -204,8 +206,10 @@ void EventsManager::logEvent(const SDL_Event &event) const SDL_TouchFingerEvent &touch = event.tfinger; const int w = mainGraphics->mWidth; const int h = mainGraphics->mHeight; - logger->log("event: SDL_FINGERUP: %lld,%lld (%f,%f) (%f,%f)", - touch.touchId, touch.fingerId, touch.x * w, touch.y * h, + logger->log("event: SDL_FINGERUP: %u,%u (%f,%f) (%f,%f)", + static_cast<unsigned int>(touch.touchId), + static_cast<unsigned int>(touch.fingerId), + touch.x * w, touch.y * w, touch.dx * w, touch.dy * h); break; } @@ -214,8 +218,9 @@ void EventsManager::logEvent(const SDL_Event &event) const SDL_TouchFingerEvent &touch = event.tfinger; const int w = mainGraphics->mWidth; const int h = mainGraphics->mHeight; - logger->log("event: SDL_FINGERMOTION: %lld,%lld (%f,%f) (%f,%f)", - touch.touchId, touch.fingerId, + logger->log("event: SDL_FINGERMOTION: %u,%u (%f,%f) (%f,%f)", + static_cast<unsigned int>(touch.touchId), + static_cast<unsigned int>(touch.fingerId), touch.x * w, touch.y * h, touch.dx * w, touch.dy * h); break; @@ -225,8 +230,9 @@ void EventsManager::logEvent(const SDL_Event &event) const SDL_MultiGestureEvent &gesture = event.mgesture; const int w = mainGraphics->mWidth; const int h = mainGraphics->mHeight; - logger->log("event: SDL_MULTIGESTURE: %lld %f,%f (%f,%f) %d,%d", - gesture.touchId, gesture.dTheta, gesture.dDist, + logger->log("event: SDL_MULTIGESTURE: %u %f,%f (%f,%f) %d,%d", + static_cast<unsigned int>(gesture.touchId), + gesture.dTheta, gesture.dDist, gesture.x * w, gesture.y * h, (int)gesture.numFingers, (int)gesture.padding); break; |