Fix keycode_to_keyname return value
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Sat, 13 Aug 2011 05:31:46 +0000 (07:31 +0200)
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Sat, 13 Aug 2011 05:31:46 +0000 (07:31 +0200)
src/keycode.cpp
src/keycode.h

index 323d12e74a5162a70e9634c04f4667f2915c8d26..052cd7dc60f3a207e37bc7eaa91ec75c8193a660 100644 (file)
@@ -206,7 +206,7 @@ static const char *KeyNames[] =
                "-", "-", "-", "-", "-", "-", "-", "-", "Attn", "CrSel", "ExSel",
                "Erase OEF", "Play", "Zoom", "PA1", "OEM Clear", "-" };
 
-const std::string &keycode_to_keyname(s32 keycode)
+const char *keycode_to_keyname(s32 keycode)
 {
        return KeyNames[keycode];
 }
index 2681e7efa37d0fb4c85985eb8ef1b8cd724b08c6..e64cb362c4b3c8fa1f0e5dcf5b88e0951e24a3df 100644 (file)
@@ -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);