Mercurial > sdl-ios-xcode
changeset 2298:41d2599b7117
one more time... I must be brain dead...
author | Bob Pendleton <bob@pendleton.com> |
---|---|
date | Sat, 12 Jan 2008 16:56:42 +0000 |
parents | 9f712d1e77f2 |
children | a7cbc25071b6 |
files | src/video/x11/SDL_x11keyboard.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/x11/SDL_x11keyboard.c Sat Jan 12 16:53:30 2008 +0000 +++ b/src/video/x11/SDL_x11keyboard.c Sat Jan 12 16:56:42 2008 +0000 @@ -859,19 +859,19 @@ 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);