Skip to content

Commit

Permalink
Added the Undo key for the Atari keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 14, 2001
1 parent a7a9a01 commit 08a0f0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/SDL_keysym.h
Expand Up @@ -284,6 +284,7 @@ typedef enum {
SDLK_MENU = 319,
SDLK_POWER = 320, /* Power Macintosh power key */
SDLK_EURO = 321, /* Some european keyboards */
SDLK_UNDO = 322, /* Atari keyboard has Undo */

/* Add any other keys here */

Expand Down
1 change: 1 addition & 0 deletions src/events/SDL_keyboard.c
Expand Up @@ -316,6 +316,7 @@ int SDL_KeyboardInit(void)
keynames[SDLK_MENU] = "menu";
keynames[SDLK_POWER] = "power";
keynames[SDLK_EURO] = "euro";
keynames[SDLK_UNDO] = "undo";

/* Done. Whew. */
return(0);
Expand Down

0 comments on commit 08a0f0c

Please sign in to comment.