From 5e662bf7c2adaaef5aedcfc99b7c7eeef52553da Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 15 Aug 2011 02:51:13 -0400 Subject: [PATCH] Patched to compile. --- src/video/x11/SDL_x11touch.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/video/x11/SDL_x11touch.h b/src/video/x11/SDL_x11touch.h index 47fbb3b7c..476e1f02e 100644 --- a/src/video/x11/SDL_x11touch.h +++ b/src/video/x11/SDL_x11touch.h @@ -23,14 +23,19 @@ #ifndef _SDL_x11touch_h #define _SDL_x11touch_h +/* +!!! FIXME: remove the evdev code; +!!! FIXME: this should be using XInput 2.1's new multitouch API. +*/ -//What should this be? +/* What should this be? */ #ifdef SDL_INPUT_LINUXEV typedef struct EventTouchData { - int x,y,pressure,finger; //Temporary Variables until sync + int x,y,pressure,finger; /* Temporary Variables until sync */ int eventStream; SDL_bool up; + SDL_bool down; } EventTouchData; #endif