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

Removed debug output

parent fdbac7e0
...@@ -193,8 +193,6 @@ Cocoa_PumpEvents(_THIS) ...@@ -193,8 +193,6 @@ Cocoa_PumpEvents(_THIS)
break; break;
} }
//printf("Type: %i, Subtype: %i\n",[event type],[event subtype]);
switch ([event type]) { switch ([event type]) {
case NSLeftMouseDown: case NSLeftMouseDown:
case NSOtherMouseDown: case NSOtherMouseDown:
...@@ -206,7 +204,6 @@ Cocoa_PumpEvents(_THIS) ...@@ -206,7 +204,6 @@ Cocoa_PumpEvents(_THIS)
case NSRightMouseDragged: case NSRightMouseDragged:
case NSOtherMouseDragged: /* usually middle mouse dragged */ case NSOtherMouseDragged: /* usually middle mouse dragged */
case NSMouseMoved: case NSMouseMoved:
printf("Mouse Type: %i, Subtype: %i\n",[event type],[event subtype]);
Cocoa_HandleMouseEvent(_this, event); Cocoa_HandleMouseEvent(_this, event);
/* Pass through to NSApp to make sure everything stays in sync */ /* Pass through to NSApp to make sure everything stays in sync */
[NSApp sendEvent:event]; [NSApp sendEvent:event];
...@@ -221,8 +218,6 @@ Cocoa_PumpEvents(_THIS) ...@@ -221,8 +218,6 @@ Cocoa_PumpEvents(_THIS)
if (([event modifierFlags] & NSCommandKeyMask) || [event type] == NSFlagsChanged) if (([event modifierFlags] & NSCommandKeyMask) || [event type] == NSFlagsChanged)
[NSApp sendEvent: event]; [NSApp sendEvent: event];
break; break;
case NSTabletPoint:
printf("Tablet Event Received\n");
default: default:
[NSApp sendEvent:event]; [NSApp sendEvent:event];
break; 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