equal
deleted
inserted
replaced
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", |