diff options
Diffstat (limited to 'src/keyboardconfig.h')
-rw-r--r-- | src/keyboardconfig.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/keyboardconfig.h b/src/keyboardconfig.h index aaeb82a2..945011a8 100644 --- a/src/keyboardconfig.h +++ b/src/keyboardconfig.h @@ -21,8 +21,7 @@ #ifndef KEYBOARDCONFIG_H #define KEYBOARDCONFIG_H -#include <SDL_types.h> - +#include <cstdint> #include <string> /** @@ -228,7 +227,7 @@ class KeyboardConfig KeyFunction mKey[KEY_TOTAL]; /**< Pointer to all the key data */ - Uint8 *mActiveKeys; /**< Stores a list of all the keys */ + uint8_t *mActiveKeys; /**< Stores a list of all the keys */ std::string mBindError; }; |