Commit 2b7c1494 authored by Sam Lantinga's avatar Sam Lantinga

Removed debug output

parent fdbac7e0
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment