diff --git a/Xcode-iOS/Demos/src/keyboard.c b/Xcode-iOS/Demos/src/keyboard.c index d7e5cf96c..c0df5b62b 100644 --- a/Xcode-iOS/Demos/src/keyboard.c +++ b/Xcode-iOS/Demos/src/keyboard.c @@ -35,9 +35,9 @@ static SDL_Color bg_color = { 50, 50, 100, 255 }; /* color of background * */ typedef struct { - SDL_ScanCode scancode; /* scancode of the key we want to map */ + SDL_Scancode scancode; /* scancode of the key we want to map */ int allow_no_mod; /* is the map valid if the key has no modifiers? */ - SDLMod mod; /* what modifiers are allowed for the mapping */ + SDL_Keymod mod; /* what modifiers are allowed for the mapping */ int index; /* what index in the font does the scancode map to */ } fontMapping; @@ -114,7 +114,7 @@ fontMapping map[TABLE_SIZE] = { If there is no entry for the key, -1 is returned */ int -keyToIndex(SDL_KeySym key) +keyToIndex(SDL_Keysym key) { int i, index = -1; for (i = 0; i < TABLE_SIZE; i++) { @@ -240,8 +240,8 @@ main(int argc, char *argv[]) int index; /* index of last key we pushed in the bitmap font */ SDL_Window *window; SDL_Event event; /* last event received */ - SDLMod mod; /* key modifiers of last key we pushed */ - SDL_ScanCode scancode; /* scancode of last key we pushed */ + SDL_Keymod mod; /* key modifiers of last key we pushed */ + SDL_Scancode scancode; /* scancode of last key we pushed */ if (SDL_Init(SDL_INIT_VIDEO) < 0) { printf("Error initializing SDL: %s", SDL_GetError());