Patched to compile.

This commit is contained in:
Ryan C. Gordon
2011-08-15 02:51:13 -04:00
parent f60d3a845a
commit d71e865584

View File

@@ -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