|
@@ -699,9 +699,11 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|
|
touches = [event touchesMatchingPhase:NSTouchPhaseBegan inView:nil];
|
|
|
break;
|
|
|
case COCOA_TOUCH_UP:
|
|
|
- case COCOA_TOUCH_CANCELLED:
|
|
|
touches = [event touchesMatchingPhase:NSTouchPhaseEnded inView:nil];
|
|
|
break;
|
|
|
+ case COCOA_TOUCH_CANCELLED:
|
|
|
+ touches = [event touchesMatchingPhase:NSTouchPhaseCancelled inView:nil];
|
|
|
+ break;
|
|
|
case COCOA_TOUCH_MOVE:
|
|
|
touches = [event touchesMatchingPhase:NSTouchPhaseMoved inView:nil];
|
|
|
break;
|