Commit 531efe97 authored by Ryan C. Gordon's avatar Ryan C. Gordon

Patched to compile.

parent 3cc0d7d6
...@@ -23,14 +23,19 @@ ...@@ -23,14 +23,19 @@
#ifndef _SDL_x11touch_h #ifndef _SDL_x11touch_h
#define _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 #ifdef SDL_INPUT_LINUXEV
typedef struct EventTouchData typedef struct EventTouchData
{ {
int x,y,pressure,finger; //Temporary Variables until sync int x,y,pressure,finger; /* Temporary Variables until sync */
int eventStream; int eventStream;
SDL_bool up; SDL_bool up;
SDL_bool down;
} EventTouchData; } EventTouchData;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment