summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-27 22:27:39 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-27 22:27:39 +0300
commit4102bb248ed5f5efcd81d317a876318c91bad4d6 (patch)
tree738800bc14ade7397ff98f036e3bf5500715e63e /src/client.cpp
parentbeb426326518da97747cb5dce6773a13a96ceb2a (diff)
downloadplus-4102bb248ed5f5efcd81d317a876318c91bad4d6.tar.gz
plus-4102bb248ed5f5efcd81d317a876318c91bad4d6.tar.bz2
plus-4102bb248ed5f5efcd81d317a876318c91bad4d6.tar.xz
plus-4102bb248ed5f5efcd81d317a876318c91bad4d6.zip
fix code style and issues with different builds.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 2cbddf87f..bfba36e7c 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -2942,7 +2942,7 @@ void Client::logEvent(const SDL_Event &event)
case SDL_FINGERDOWN:
{
const SDL_TouchFingerEvent &touch = event.tfinger;
- logger->log("event: SDL_FINGERDOWN: %lld,%lld (%f,%f) (%f,%f)",
+ logger->log("event: SDL_FINGERDOWN: %ld,%ld (%f,%f) (%f,%f)",
touch.touchId, touch.fingerId, touch.x, touch.y,
touch.dx, touch.dy);
break;
@@ -2950,7 +2950,7 @@ void Client::logEvent(const SDL_Event &event)
case SDL_FINGERUP:
{
const SDL_TouchFingerEvent &touch = event.tfinger;
- logger->log("event: SDL_FINGERUP: %lld,%lld (%f,%f) (%f,%f)",
+ logger->log("event: SDL_FINGERUP: %ld,%ld (%f,%f) (%f,%f)",
touch.touchId, touch.fingerId, touch.x, touch.y,
touch.dx, touch.dy);
break;
@@ -2958,7 +2958,7 @@ void Client::logEvent(const SDL_Event &event)
case SDL_FINGERMOTION:
{
const SDL_TouchFingerEvent &touch = event.tfinger;
- logger->log("event: SDL_FINGERMOTION: %lld,%lld (%f,%f) (%f,%f)",
+ logger->log("event: SDL_FINGERMOTION: %ld,%ld (%f,%f) (%f,%f)",
touch.touchId, touch.fingerId, touch.x, touch.y,
touch.dx, touch.dy);
break;