Added back in a little more debugging for the X11 keyboard code

This commit is contained in:
Sam Lantinga 2010-07-18 01:00:01 -07:00
parent fb034577a1
commit 9f37dd980a
2 changed files with 5 additions and 3 deletions

View file

@ -34,7 +34,7 @@
#include "SDL_timer.h"
#include "SDL_syswm.h"
/*#define DEBUG_XEVENTS*/
#define DEBUG_XEVENTS
static void
X11_DispatchEvent(_THIS)
@ -181,7 +181,7 @@ X11_DispatchEvent(_THIS)
printf("KeyPress (X11 keycode = 0x%X)\n", xevent.xkey.keycode);
#endif
SDL_SendKeyboardKey(SDL_PRESSED, videodata->key_layout[keycode]);
#if 0
#if 1
if (videodata->key_layout[keycode] == SDLK_UNKNOWN) {
int min_keycode, max_keycode;
XDisplayKeycodes(display, &min_keycode, &max_keycode);

View file

@ -211,7 +211,9 @@ X11_InitKeyboard(_THIS)
}
}
if (j == SDL_arraysize(fingerprint)) {
/* printf("Using scancode set %d\n", i); */
#ifdef DEBUG_KEYBOARD
printf("Using scancode set %d, min_keycode = %d, max_keycode = %d, table_size = %d\n", i, min_keycode, max_keycode, scancode_set[i].table_size);
#endif
SDL_memcpy(&data->key_layout[min_keycode], scancode_set[i].table,
sizeof(SDL_scancode) * scancode_set[i].table_size);
fingerprint_detected = SDL_TRUE;