Renaming SDLK_QUOTE and SDLK_BACKQUOTE

Renaming SDLK_QUOTE to SDLK_APOSTROPHE.
Renaming SDLK_BACKQUOTE to SDLK_GRAVE.
This makes them similar to their scancode names.
This commit is contained in:
Petar Popovic 2024-05-13 02:42:51 +02:00 committed by Sam Lantinga
parent 06d6f2cb25
commit 94cbaaabbf
7 changed files with 23 additions and 9 deletions

View file

@ -62,7 +62,7 @@ typedef Uint32 SDL_Keycode;
#define SDLK_PERCENT '%'
#define SDLK_DOLLAR '$'
#define SDLK_AMPERSAND '&'
#define SDLK_QUOTE '\''
#define SDLK_APOSTROPHE '\''
#define SDLK_LEFTPAREN '('
#define SDLK_RIGHTPAREN ')'
#define SDLK_ASTERISK '*'
@ -93,7 +93,7 @@ typedef Uint32 SDL_Keycode;
#define SDLK_RIGHTBRACKET ']'
#define SDLK_CARET '^'
#define SDLK_UNDERSCORE '_'
#define SDLK_BACKQUOTE '`'
#define SDLK_GRAVE '`'
#define SDLK_a 'a'
#define SDLK_b 'b'
#define SDLK_c 'c'