diff options
author | krogoway <none@none> | 2011-01-24 13:47:35 -0600 |
---|---|---|
committer | krogoway <none@none> | 2011-01-24 13:47:35 -0600 |
commit | d35de7167f5cb621fef8c942ac22d7fde596cbe3 (patch) | |
tree | 7816f612bd0e27d4b89dd6a81b578522b9a71701 /include/SDL_scancode.h | |
parent | 50c5b0720f6253810fc77abd983c684e07f0bd1b (diff) |
Renamed SDL_keysym to SDL_KeySym
Renamed SDL_scancode to SDL_ScanCode
Added #defines to SDL_compat.h
Diffstat (limited to 'include/SDL_scancode.h')
-rw-r--r-- | include/SDL_scancode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/SDL_scancode.h b/include/SDL_scancode.h index 0efaf88506..a4e2738455 100644 --- a/include/SDL_scancode.h +++ b/include/SDL_scancode.h @@ -35,7 +35,7 @@ * \brief The SDL keyboard scancode representation. * * Values of this type are used to represent keyboard keys, among other places - * in the \link SDL_keysym::scancode key.keysym.scancode \endlink field of the + * in the \link SDL_KeySym::scancode key.keysym.scancode \endlink field of the * SDL_Event structure. * * The values in this enumeration are based on the USB usage page standard: @@ -392,7 +392,7 @@ typedef enum SDL_NUM_SCANCODES = 512 /**< not a key, just marks the number of scancodes for array bounds */ -} SDL_scancode; +} SDL_ScanCode; #endif /* _SDL_scancode_h */ |