Mercurial > sdl-ios-xcode
comparison test/checkkeys.c @ 5281:15a71bec4a55
merged
author | Eric Wing <ewing . public |-at-| gmail . com> |
---|---|
date | Sat, 12 Feb 2011 19:16:09 -0800 |
parents | 572a73d71b5f |
children |
comparison
equal
deleted
inserted
replaced
5219:adfcdd311ae0 | 5281:15a71bec4a55 |
---|---|
51 if (mod & KMOD_MODE) | 51 if (mod & KMOD_MODE) |
52 printf(" MODE"); | 52 printf(" MODE"); |
53 } | 53 } |
54 | 54 |
55 static void | 55 static void |
56 PrintKey(SDL_KeySym * sym, SDL_bool pressed, SDL_bool repeat) | 56 PrintKey(SDL_Keysym * sym, SDL_bool pressed, SDL_bool repeat) |
57 { | 57 { |
58 /* Print the keycode, name and state */ | 58 /* Print the keycode, name and state */ |
59 if (sym->sym) { | 59 if (sym->sym) { |
60 printf("Key %s: scancode %d = %s, keycode 0x%08X = %s ", | 60 printf("Key %s: scancode %d = %s, keycode 0x%08X = %s ", |
61 pressed ? "pressed " : "released", | 61 pressed ? "pressed " : "released", |