mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 07:52:57 -05:00
Added the Undo key for the Atari keyboard
This commit is contained in:
parent
c7e0ec9735
commit
242df18e66
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user