diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-08-13 07:31:46 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-08-13 07:31:46 +0200 |
commit | b1e0b7728bc0933f17509b8bfbc48f218f9990dc (patch) | |
tree | 8469241ab98b0586a08780bf5ca95f684da82cbf /src/keycode.h | |
parent | eb255e68706c5fcc61bf17a81427c34505c3d519 (diff) | |
download | minetest-b1e0b7728bc0933f17509b8bfbc48f218f9990dc.tar.gz minetest-b1e0b7728bc0933f17509b8bfbc48f218f9990dc.tar.bz2 minetest-b1e0b7728bc0933f17509b8bfbc48f218f9990dc.zip |
Fix keycode_to_keyname return value
Diffstat (limited to 'src/keycode.h')
-rw-r--r-- | src/keycode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keycode.h b/src/keycode.h index 2681e7efa..e64cb362c 100644 --- a/src/keycode.h +++ b/src/keycode.h @@ -24,7 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <string> irr::EKEY_CODE keyname_to_keycode(const char *name); -const std::string &keycode_to_keyname(s32 keycode); +const char *keycode_to_keyname(s32 keycode); // Key configuration getter irr::EKEY_CODE getKeySetting(const char *settingname); |