From 6e4e9ceb44dc272c477f7648be6024b38aa0d837 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Fri, 8 May 2015 21:53:02 +0200 Subject: [PATCH] Fixed SDL_TouchFingerEvent documentation in header file. --- include/SDL_events.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SDL_events.h b/include/SDL_events.h index ee61421f676c0..ea814e72b999d 100644 --- a/include/SDL_events.h +++ b/include/SDL_events.h @@ -412,8 +412,8 @@ typedef struct SDL_TouchFingerEvent SDL_FingerID fingerId; float x; /**< Normalized in the range 0...1 */ float y; /**< Normalized in the range 0...1 */ - float dx; /**< Normalized in the range 0...1 */ - float dy; /**< Normalized in the range 0...1 */ + float dx; /**< Normalized in the range -1...1 */ + float dy; /**< Normalized in the range -1...1 */ float pressure; /**< Normalized in the range 0...1 */ } SDL_TouchFingerEvent;