mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-23 13:09:11 +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:
parent
d9dc4b320a
commit
e8dbbf8380
16 changed files with 275 additions and 93 deletions
|
@ -139,7 +139,7 @@ int main(int argc, char **argv)
|
|||
case SDL_EVENT_KEY_DOWN:
|
||||
if (e.key.key == SDLK_ESCAPE) {
|
||||
done = 1;
|
||||
} else if (e.key.key == SDLK_x) {
|
||||
} else if (e.key.key == SDLK_X) {
|
||||
if (!areas) {
|
||||
areas = drag_areas;
|
||||
numareas = SDL_arraysize(drag_areas);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue