diff touchTest/touchSimp.c @ 4642:057e8762d2a1

Added reading of event* for touch events.
author Jim Grandpre <jim.tla@gmail.com>
date Fri, 28 May 2010 01:26:52 -0400
parents f068a6dfc858
children 3c4e0130c9b1
line wrap: on
line diff
--- a/touchTest/touchSimp.c	Thu May 27 01:21:37 2010 -0400
+++ b/touchTest/touchSimp.c	Fri May 28 01:26:52 2010 -0400
@@ -186,6 +186,10 @@
 	    case SDL_MOUSEBUTTONUP:
 	      bstatus &= ~(1<<(event.button.button-1));
 	      break;
+	    case SDL_FINGERMOTION:
+	      printf("Holy SH!T\n");
+	      break;
+		     
 	    }
 	}