From dc74dd2e8762b55f76ceec92e8d054ef3aa01d7f Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 25 May 2012 18:21:22 -0400 Subject: [PATCH] Fixed compiling the keyboad iOS demo --- Xcode-iOS/Demos/src/keyboard.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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());