Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
one more time... I must be brain dead...
Browse files Browse the repository at this point in the history
  • Loading branch information
pendletonrc committed Jan 12, 2008
1 parent 293370a commit b2beddf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/video/x11/SDL_x11keyboard.c
Expand Up @@ -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);
Expand Down

0 comments on commit b2beddf

Please sign in to comment.