From 5217c040be96a5b2f046590fc76934d1bcd7b365 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Sun, 23 Jun 2024 22:52:17 +0200 Subject: [PATCH] Sort possible SDL_KeyCode values (swap SDLK_PERCENT and SDLK_DOLLAR) --- include/SDL3/SDL_keycode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_keycode.h b/include/SDL3/SDL_keycode.h index 97a0435745..e2a14951e6 100644 --- a/include/SDL3/SDL_keycode.h +++ b/include/SDL3/SDL_keycode.h @@ -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 /* '(' */