I noticed Irrlicht under linux sends arrows for numpad keys, regardless of numlock state.
Ok, it seems like this is a bug and fixed in svn trunk, right? http://irrlicht.sourceforge.net/forum/v ... 15#p289630
Also I noticed
Code: Select all
void CIrrDeviceLinux::createKeyMap()
{
....
KeyMap.push_back(SKeyMap(XK_KP_0, KEY_KEY_0));
// and so on
...
//so, shouldn't it be
KeyMap.push_back(SKeyMap(XK_KP_0, KEY_NUMPAD0));
// instead ?
}
Debian 7 x64