Sort possible SDL_KeyCode values (swap SDLK_PERCENT and SDLK_DOLLAR)

This commit is contained in:
Anonymous Maarten 2024-06-23 22:52:17 +02:00
parent 974bbea20b
commit 5217c040be
1 changed files with 1 additions and 1 deletions

View File

@ -59,8 +59,8 @@ typedef Uint32 SDL_Keycode;
#define SDLK_EXCLAIM 0x00000021u /* '!' */
#define SDLK_DBLAPOSTROPHE 0x00000022u /* '"' */
#define SDLK_HASH 0x00000023u /* '#' */
#define SDLK_PERCENT 0x00000025u /* '%' */
#define SDLK_DOLLAR 0x00000024u /* '$' */
#define SDLK_PERCENT 0x00000025u /* '%' */
#define SDLK_AMPERSAND 0x00000026u /* '&' */
#define SDLK_APOSTROPHE 0x00000027u /* '\'' */
#define SDLK_LEFTPAREN 0x00000028u /* '(' */