From b3e18669ed6c9c2cd9b8cbf4ae4b03869d51d12a Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 10 Oct 2010 15:45:58 -0700 Subject: [PATCH] Removed debug output --- src/video/cocoa/SDL_cocoaevents.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/video/cocoa/SDL_cocoaevents.m b/src/video/cocoa/SDL_cocoaevents.m index d13e91932..6a40b886f 100644 --- a/src/video/cocoa/SDL_cocoaevents.m +++ b/src/video/cocoa/SDL_cocoaevents.m @@ -193,8 +193,6 @@ - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sende break; } - //printf("Type: %i, Subtype: %i\n",[event type],[event subtype]); - switch ([event type]) { case NSLeftMouseDown: case NSOtherMouseDown: @@ -206,7 +204,6 @@ - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sende case NSRightMouseDragged: case NSOtherMouseDragged: /* usually middle mouse dragged */ case NSMouseMoved: - printf("Mouse Type: %i, Subtype: %i\n",[event type],[event subtype]); Cocoa_HandleMouseEvent(_this, event); /* Pass through to NSApp to make sure everything stays in sync */ [NSApp sendEvent:event]; @@ -221,8 +218,6 @@ - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sende if (([event modifierFlags] & NSCommandKeyMask) || [event type] == NSFlagsChanged) [NSApp sendEvent: event]; break; - case NSTabletPoint: - printf("Tablet Event Received\n"); default: [NSApp sendEvent:event]; break;