Merge pull request #44061 from madmiraal/fix-44056

Ignore hint entries in game controller mapping
This commit is contained in:
Rémi Verschelde 2020-12-03 13:27:28 +01:00 committed by GitHub
commit 1b37c522dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1211,7 +1211,7 @@ void Input::parse_mapping(String p_mapping) {
ERR_CONTINUE_MSG(output.length() < 1 || input.length() < 2,
String(entry[idx] + "\nInvalid device mapping entry: " + entry[idx]));
if (output == "platform") {
if (output == "platform" || output == "hint") {
continue;
}