Skip to content

Commit

Permalink
Removed some debug printf() calls I accidentally added to Subversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Feb 23, 2007
1 parent 4e4bc4e commit d294ef1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/video/quartz/SDL_QuartzEvents.m
Expand Up @@ -275,7 +275,6 @@ static void QZ_DoKey (_THIS, int state, NSEvent *event) {
if (numChars == 0) {

key.scancode = [ event keyCode ];
printf("numChars == 0, scancode == %d\n", (int) key.scancode);
key.sym = keymap [ key.scancode ];
key.unicode = 0;
key.mod = KMOD_NONE;
Expand All @@ -285,7 +284,6 @@ static void QZ_DoKey (_THIS, int state, NSEvent *event) {
else if (numChars == 1) {

key.scancode = [ event keyCode ];
printf("numChars == 1, scancode == %d\n", (int) key.scancode);
key.sym = keymap [ key.scancode ];
key.unicode = [ chars characterAtIndex:0 ];
key.mod = KMOD_NONE;
Expand Down

0 comments on commit d294ef1

Please sign in to comment.