Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 10, 2010
1 parent 6dc6278 commit b3e1866
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/video/cocoa/SDL_cocoaevents.m
Expand Up @@ -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:
Expand All @@ -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];
Expand All @@ -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;
Expand Down

0 comments on commit b3e1866

Please sign in to comment.