Skip to content

Commit

Permalink
Date: Wed, 1 Mar 2006 23:52:09 +0100
Browse files Browse the repository at this point in the history
From: Sam Hocevar
Subject: [SDL] [patch] aalib driver

   Hi there. The attached patch fixes a buffer overflow in the aalib
driver and also adds a workaround for a conflict between arrow keys and
the numeric keypad that have the same scancode on aalib. The patch gives
precedence to the arrow keys.
  • Loading branch information
slouken committed Mar 2, 2006
1 parent 7ae9123 commit 00ad7e9
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/video/aalib/SDL_aaevents.c
Expand Up @@ -126,12 +126,6 @@ void AA_InitOSKeymap(_THIS)
for ( i=0; i<SDL_arraysize(keymap); ++i )
keymap[i] = SDLK_UNKNOWN;

keymap[AA_ESC] = SDLK_ESCAPE;
keymap[AA_UP] = SDLK_UP;
keymap[AA_DOWN] = SDLK_DOWN;
keymap[AA_LEFT] = SDLK_LEFT;
keymap[AA_RIGHT] = SDLK_RIGHT;

/* Alphabet keys */
for ( i = 0; i<26; ++i ){
keymap['a' + i] = SDLK_a+i;
Expand Down Expand Up @@ -179,10 +173,20 @@ void AA_InitOSKeymap(_THIS)
keymap[293] = SDLK_KP7;
keymap[295] = SDLK_KP8;
keymap[298] = SDLK_KP9;

keymap[AA_ESC] = SDLK_ESCAPE;
keymap[AA_UP] = SDLK_UP;
keymap[AA_DOWN] = SDLK_DOWN;
keymap[AA_LEFT] = SDLK_LEFT;
keymap[AA_RIGHT] = SDLK_RIGHT;
}

static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym)
{
/* Sanity check */
if ( scancode >= SDL_arraysize(keymap) )
scancode = AA_UNKNOWN;

/* Set the keysym information */
keysym->scancode = scancode;
keysym->sym = keymap[scancode];
Expand Down

0 comments on commit 00ad7e9

Please sign in to comment.