comparison test/checkkeys.c @ 5223:572a73d71b5f

Sheena pointed out that "scancode" and "keysym" are single words and shouldn't be camel-cased.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 07 Feb 2011 09:37:11 -0800
parents 25d4feb7c127
children
comparison
equal deleted inserted replaced
5222:9c0593fa27d6 5223:572a73d71b5f
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",