Skip to content
Snippets Groups Projects
Commit b1e0b772 authored by Giuseppe Bilotta's avatar Giuseppe Bilotta
Browse files

Fix keycode_to_keyname return value

parent eb255e68
Branches
Tags
No related merge requests found
......@@ -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];
}
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment