mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-17 16:58:13 +00:00
Renamed SDLK_a-z to SDLK_A-Z
Made the symbols uppercase for consistency with the other SDLK_* constants, but the values are still lowercase.
This commit is contained in:
@@ -189,7 +189,7 @@ static void loop(void)
|
||||
if (event.type == SDL_EVENT_KEY_UP) {
|
||||
SDL_bool updateCursor = SDL_FALSE;
|
||||
|
||||
if (event.key.key == SDLK_a) {
|
||||
if (event.key.key == SDLK_A) {
|
||||
SDL_assert(!"Keyboard generated assert");
|
||||
} else if (event.key.key == SDLK_LEFT) {
|
||||
--system_cursor;
|
||||
|
Reference in New Issue
Block a user