Commit 6ed8759b authored by Jim Grandpre's avatar Jim Grandpre

Added better logging

parent a4a0897a
...@@ -299,6 +299,7 @@ static __inline__ void ConvertNSRect(NSRect *r) ...@@ -299,6 +299,7 @@ static __inline__ void ConvertNSRect(NSRect *r)
while (touch) { while (touch) {
long touchId = (long)[touch device]; long touchId = (long)[touch device];
if (!SDL_GetTouch(touchId)) { if (!SDL_GetTouch(touchId)) {
printf("Adding touch: %i\n",touchId)
SDL_Touch touch; SDL_Touch touch;
touch.id = touchId; touch.id = touchId;
...@@ -315,6 +316,7 @@ static __inline__ void ConvertNSRect(NSRect *r) ...@@ -315,6 +316,7 @@ static __inline__ void ConvertNSRect(NSRect *r)
if (SDL_AddTouch(&touch, "") < 0) { if (SDL_AddTouch(&touch, "") < 0) {
continue; continue;
} }
printf("Success, added touch: %i\n",touchId)
} }
float x = [touch normalizedPosition].x; float x = [touch normalizedPosition].x;
float y = [touch normalizedPosition].y; float y = [touch normalizedPosition].y;
......
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