JANITORIAL: Fix typos in comments in various files (#10058)

This commit is contained in:
Hubert Maier 2024-06-19 16:13:46 +02:00 committed by GitHub
parent 0fe9f5da54
commit 3acdb8a90b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 28 additions and 28 deletions

View file

@ -314,7 +314,7 @@ typedef Uint16 SDL_Keymod;
#define SDL_KMOD_NUM 0x1000u /**< the Num Lock key (may be located on an extended keypad) is down. */
#define SDL_KMOD_CAPS 0x2000u /**< the Caps Lock key is down. */
#define SDL_KMOD_MODE 0x4000u /**< the !AltGr key is down. */
#define SDL_KMOD_SCROLL 0x8000u /**< the Scoll Lock key is down. */
#define SDL_KMOD_SCROLL 0x8000u /**< the Scroll Lock key is down. */
#define SDL_KMOD_CTRL (SDL_KMOD_LCTRL | SDL_KMOD_RCTRL) /**< Any Ctrl key is down. */
#define SDL_KMOD_SHIFT (SDL_KMOD_LSHIFT | SDL_KMOD_RSHIFT) /**< Any Shift key is down. */
#define SDL_KMOD_ALT (SDL_KMOD_LALT | SDL_KMOD_RALT) /**< Any Alt key is down. */