use joystick name from mapping-db if available

This commit is contained in:
hinsbart 2016-02-29 16:48:19 +01:00
parent 210d332def
commit 0022af9647
2 changed files with 3 additions and 0 deletions

View file

@ -173,6 +173,7 @@ void InputDefault::joy_connection_changed(int p_idx, bool p_connected, String p_
for (int i=0; i < map_db.size(); i++) {
if (js.uid == map_db[i].uid) {
mapping = i;
js.name = map_db[i].name;
//printf("found mapping\n");
};
};
@ -826,6 +827,7 @@ void InputDefault::parse_mapping(String p_mapping) {
uid.resize(17);
mapping.uid = entry[0];
mapping.name = entry[1];
int idx = 1;
while (++idx < entry.size()) {

View file

@ -102,6 +102,7 @@ private:
struct JoyDeviceMapping {
String uid;
String name;
Map<int,JoyEvent> buttons;
Map<int,JoyEvent> axis;
JoyEvent hat[HAT_MAX];