mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
use joystick name from mapping-db if available
This commit is contained in:
parent
210d332def
commit
0022af9647
2 changed files with 3 additions and 0 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue