Removed debug output

This commit is contained in:
Sam Lantinga 2010-10-10 15:45:58 -07:00
parent fdbac7e0ce
commit 2b7c14949b

View file

@ -193,8 +193,6 @@ Cocoa_PumpEvents(_THIS)
break;
}
//printf("Type: %i, Subtype: %i\n",[event type],[event subtype]);
switch ([event type]) {
case NSLeftMouseDown:
case NSOtherMouseDown:
@ -206,7 +204,6 @@ Cocoa_PumpEvents(_THIS)
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 @@ Cocoa_PumpEvents(_THIS)
if (([event modifierFlags] & NSCommandKeyMask) || [event type] == NSFlagsChanged)
[NSApp sendEvent: event];
break;
case NSTabletPoint:
printf("Tablet Event Received\n");
default:
[NSApp sendEvent:event];
break;