diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-07-23 15:50:05 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-07-23 15:50:05 +0300 |
commit | f17cfb35d1bd54e098c0e9df7a77d32b6126ccdf (patch) | |
tree | baec1331ec077ce4b5c6acb46f7717e09deecdae /src/keycode.h | |
parent | 3882536d40656564b31c20008b55dfd77e848304 (diff) | |
parent | 7da02e05a6b97eb70fd17abdfdb38d8f99fabad9 (diff) | |
download | dragonfireclient-f17cfb35d1bd54e098c0e9df7a77d32b6126ccdf.tar.xz |
uh, i guess this now merges the new delta stuff?
Diffstat (limited to 'src/keycode.h')
-rw-r--r-- | src/keycode.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keycode.h b/src/keycode.h index 9c62004d8..300682b12 100644 --- a/src/keycode.h +++ b/src/keycode.h @@ -24,11 +24,13 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <string> irr::EKEY_CODE keyname_to_keycode(const char *name); +std::string keycode_to_keyname(s32 keycode); // Key configuration getter irr::EKEY_CODE getKeySetting(const char *settingname); -std::string keycode_to_keyname(s32 keycode); -void clearCache(); + +// Clear fast lookup cache +void clearKeyCache(); #endif |