diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-17 20:13:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-17 20:13:48 +0300 |
commit | c2efedab22275302f0a10cc197424d345a021d18 (patch) | |
tree | 7488abbb3655451a3f6a1621e0708f72011af5f6 /src/keyboardconfig.h | |
parent | 79aba82be3de5b6b571e2f59f7a34ded4b03160f (diff) | |
download | plus-c2efedab22275302f0a10cc197424d345a021d18.tar.gz plus-c2efedab22275302f0a10cc197424d345a021d18.tar.bz2 plus-c2efedab22275302f0a10cc197424d345a021d18.tar.xz plus-c2efedab22275302f0a10cc197424d345a021d18.zip |
Replace SDL int types to C++ types.
Diffstat (limited to 'src/keyboardconfig.h')
-rw-r--r-- | src/keyboardconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboardconfig.h b/src/keyboardconfig.h index 4fc1bdc51..fec264da0 100644 --- a/src/keyboardconfig.h +++ b/src/keyboardconfig.h @@ -96,9 +96,9 @@ class KeyboardConfig private: bool mEnabled; /**< Flag to respond to key input */ - Uint8 *mActiveKeys; /**< Stores a list of all the keys */ + uint8_t *mActiveKeys; /**< Stores a list of all the keys */ - Uint8 *mActiveKeys2; /**< Stores a list of all the keys */ + uint8_t *mActiveKeys2; /**< Stores a list of all the keys */ KeyToActionMap mKeyToAction; |