Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed SDL_TouchFingerEvent documentation in header file.
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
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; |
|
|
|
|
|