Fixed bug 2475 - Incorrect SDL_Log() format specifiers in test/testgesture.c

rettichschnidi

The floats should not be interpreted as integers. Patch against the current head attached.
This commit is contained in:
Sam Lantinga 2014-04-17 22:40:57 -07:00
parent 43c991969e
commit 353feb5c76

View file

@ -266,19 +266,19 @@ int main(int argc, char* argv[])
break;
case SDL_FINGERMOTION:
#if VERBOSE
SDL_Log("Finger: %i,x: %i, y: %i",event.tfinger.fingerId,
SDL_Log("Finger: %"PRIs64",x: %f, y: %f",event.tfinger.fingerId,
event.tfinger.x,event.tfinger.y);
#endif
break;
case SDL_FINGERDOWN:
#if VERBOSE
SDL_Log("Finger: %"PRIs64" down - x: %i, y: %i",
SDL_Log("Finger: %"PRIs64" down - x: %f, y: %f",
event.tfinger.fingerId,event.tfinger.x,event.tfinger.y);
#endif
break;
case SDL_FINGERUP:
#if VERBOSE
SDL_Log("Finger: %"PRIs64" up - x: %i, y: %i",
SDL_Log("Finger: %"PRIs64" up - x: %f, y: %f",
event.tfinger.fingerId,event.tfinger.x,event.tfinger.y);
#endif
break;