Mercurial > sdl-ios-xcode
diff src/video/fbcon/SDL_fbevents.c @ 1379:c0a74f199ecf
Use only safe string functions
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 19 Feb 2006 23:46:34 +0000 |
parents | 19418e4422cb |
children | d910939febfa |
line wrap: on
line diff
--- a/src/video/fbcon/SDL_fbevents.c Sun Feb 19 23:38:57 2006 +0000 +++ b/src/video/fbcon/SDL_fbevents.c Sun Feb 19 23:46:34 2006 +0000 @@ -994,7 +994,7 @@ /* Initialize the Linux key translation table */ /* First get the ascii keys and others not well handled */ - for (i=0; i<SDL_TABLESIZE(keymap); ++i) { + for (i=0; i<SDL_arraysize(keymap); ++i) { switch(i) { /* These aren't handled by the x86 kernel keymapping (?) */ case SCANCODE_PRINTSCREEN: @@ -1033,7 +1033,7 @@ break; } } - for (i=0; i<SDL_TABLESIZE(keymap); ++i) { + for (i=0; i<SDL_arraysize(keymap); ++i) { switch(keymap_temp[i]) { case K_F1: keymap[i] = SDLK_F1; break; case K_F2: keymap[i] = SDLK_F2; break;