Mercurial > sdl-ios-xcode
diff src/video/android/SDL_androidkeyboard.c @ 5223:572a73d71b5f
Sheena pointed out that "scancode" and "keysym" are single words and shouldn't be camel-cased.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 07 Feb 2011 09:37:11 -0800 |
parents | 25d4feb7c127 |
children | c1a92e61907d |
line wrap: on
line diff
--- a/src/video/android/SDL_androidkeyboard.c Mon Feb 07 09:23:01 2011 -0800 +++ b/src/video/android/SDL_androidkeyboard.c Mon Feb 07 09:37:11 2011 -0800 @@ -37,7 +37,7 @@ SDL_SetKeymap(0, keymap, SDL_NUM_SCANCODES); } -static SDL_ScanCode Android_Keycodes[] = { +static SDL_Scancode Android_Keycodes[] = { SDL_SCANCODE_UNKNOWN, /* AKEYCODE_UNKNOWN */ SDL_SCANCODE_UNKNOWN, /* AKEYCODE_SOFT_LEFT */ SDL_SCANCODE_UNKNOWN, /* AKEYCODE_SOFT_RIGHT */ @@ -151,10 +151,10 @@ SDL_SCANCODE_UNKNOWN, /* AKEYCODE_BUTTON_MODE */ }; -static SDL_ScanCode +static SDL_Scancode TranslateKeycode(int keycode) { - SDL_ScanCode scancode = SDL_SCANCODE_UNKNOWN; + SDL_Scancode scancode = SDL_SCANCODE_UNKNOWN; if (keycode < SDL_arraysize(Android_Keycodes)) { scancode = Android_Keycodes[keycode];