changeset 1961:f42f10fc309e

Removed debug code. :)
author Sam Lantinga <slouken@libsdl.org>
date Sun, 30 Jul 2006 06:11:52 +0000
parents 118daa3a24cc
children c92e5f3e68d9
files src/video/cocoa/SDL_cocoakeyboard.m
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/cocoa/SDL_cocoakeyboard.m	Sun Jul 30 06:11:24 2006 +0000
+++ b/src/video/cocoa/SDL_cocoakeyboard.m	Sun Jul 30 06:11:52 2006 +0000
@@ -530,7 +530,6 @@
         if ([event isARepeat]) {
             break;
         }
-printf("NSKeyDown: %x, %x\n", scancode, [event modifierFlags]);
         SDL_SendKeyboardKey(data->keyboard, SDL_PRESSED, (Uint8)scancode,
                             data->keymap[scancode]);
         text = [[event characters] UTF8String];
@@ -539,12 +538,10 @@
         }
         break;
     case NSKeyUp:
-printf("NSKeyUp: %x, %x\n", scancode, [event modifierFlags]);
         SDL_SendKeyboardKey(data->keyboard, SDL_RELEASED, (Uint8)scancode,
                             data->keymap[scancode]);
         break;
     case NSFlagsChanged:
-printf("NSFlagsChanged: %x, %x\n", scancode, [event modifierFlags]);
         HandleModifiers(_this, scancode, [event modifierFlags]);
         break;
     }