Merge pull request #77748 from DevanOBoyle/fix/ignore_false_button_error
Skip error messages for buttons that don't exist
This commit is contained in:
commit
91e2859cd3
|
@ -1356,8 +1356,9 @@ void Input::parse_mapping(String p_mapping) {
|
|||
|
||||
String output = entry[idx].get_slice(":", 0).replace(" ", "");
|
||||
String input = entry[idx].get_slice(":", 1).replace(" ", "");
|
||||
ERR_CONTINUE_MSG(output.length() < 1 || input.length() < 2,
|
||||
vformat("Invalid device mapping entry \"%s\" in mapping:\n%s", entry[idx], p_mapping));
|
||||
if (output.length() < 1 || input.length() < 2) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (output == "platform" || output == "hint") {
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue