macOS: fix a typo in touch handling code.
diff --git a/src/video/cocoa/SDL_cocoawindow.m b/src/video/cocoa/SDL_cocoawindow.m
index 0c8557e..a8de968 100644
--- a/src/video/cocoa/SDL_cocoawindow.m
+++ b/src/video/cocoa/SDL_cocoawindow.m
@@ -1190,7 +1190,7 @@ SetWindowStyle(SDL_Window * window, NSUInteger style)
* relative coordinates via [touch locationInView:].
*/
if ([touch type] == NSTouchTypeDirect) {
- return;
+ continue;
}
}
#endif