Skip to content

Commit

Permalink
SDL_keycode.h (SDL_Keymod): remove comma at end of enumerator list
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Nov 12, 2020
1 parent c122e9b commit 52486d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/SDL_keycode.h
Expand Up @@ -88,9 +88,11 @@ typedef enum
SDLK_GREATER = '>',
SDLK_QUESTION = '?',
SDLK_AT = '@',

/*
Skip uppercase letters
*/

SDLK_LEFTBRACKET = '[',
SDLK_BACKSLASH = '\\',
SDLK_RIGHTBRACKET = ']',
Expand Down Expand Up @@ -341,7 +343,7 @@ typedef enum
KMOD_CTRL = KMOD_LCTRL | KMOD_RCTRL,
KMOD_SHIFT = KMOD_LSHIFT | KMOD_RSHIFT,
KMOD_ALT = KMOD_LALT | KMOD_RALT,
KMOD_GUI = KMOD_LGUI | KMOD_RGUI,
KMOD_GUI = KMOD_LGUI | KMOD_RGUI
} SDL_Keymod;

#endif /* SDL_keycode_h_ */
Expand Down

0 comments on commit 52486d0

Please sign in to comment.