one more time... I must be brain dead...

This commit is contained in:
Bob Pendleton
2008-01-12 16:56:42 +00:00
parent 1129c73ed3
commit 06920df50f

View File

@@ -859,19 +859,19 @@ X11_InitKeyboard(_THIS)
KeyCodeToSDLK tables to find the right one (if any).
*/
/* *INDENT-ON* */
/* *INDENT-OFF* */
struct
{
KeySym sym;
SDLKey key;
} fingerprint[] = {
{
XK_Tab, SDLK_TAB}, {
XK_Return, SDLK_RETURN}, {
XK_Escape, SDLK_ESCAPE}, {
XK_space, SDLK_SPACE}
} fingerprint[] =
{
{XK_Tab, SDLK_TAB},
{XK_Return, SDLK_RETURN},
{XK_Escape, SDLK_ESCAPE},
{XK_space, SDLK_SPACE}
};
/* *INDENT-OFF* */
/* *INDENT-ON* */
SDL_zero(keyboard);
data->keyboard = SDL_AddKeyboard(&keyboard, -1);