Fix keycode_to_keyname return value

This commit is contained in:
Giuseppe Bilotta 2011-08-13 07:31:46 +02:00
parent eb255e6870
commit b1e0b7728b
2 changed files with 2 additions and 2 deletions

View 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];
}

View 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);