Mercurial > sdl-ios-xcode
changeset 4904:c0021a587dc7
Removed debug output
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 10 Oct 2010 15:45:58 -0700 |
parents | f50c7996d925 |
children | 9779093454d2 |
files | src/video/cocoa/SDL_cocoaevents.m |
diffstat | 1 files changed, 0 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/cocoa/SDL_cocoaevents.m Wed Sep 29 21:24:50 2010 -0700 +++ b/src/video/cocoa/SDL_cocoaevents.m Sun Oct 10 15:45:58 2010 -0700 @@ -193,8 +193,6 @@ break; } - //printf("Type: %i, Subtype: %i\n",[event type],[event subtype]); - switch ([event type]) { case NSLeftMouseDown: case NSOtherMouseDown: @@ -206,7 +204,6 @@ 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 @@ if (([event modifierFlags] & NSCommandKeyMask) || [event type] == NSFlagsChanged) [NSApp sendEvent: event]; break; - case NSTabletPoint: - printf("Tablet Event Received\n"); default: [NSApp sendEvent:event]; break;