Change message of unknown joypad property from error to warning
(cherry picked from commit e841f13cdc
)
This commit is contained in:
parent
bab7f1c0a6
commit
e814861950
1 changed files with 3 additions and 2 deletions
|
@ -1216,8 +1216,9 @@ void InputDefault::parse_mapping(String p_mapping) {
|
|||
|
||||
JoystickList output_button = _get_output_button(output);
|
||||
JoystickList output_axis = _get_output_axis(output);
|
||||
ERR_CONTINUE_MSG(output_button == JOY_INVALID_OPTION && output_axis == JOY_INVALID_OPTION,
|
||||
vformat("Unrecognised output string \"%s\" in mapping:\n%s", output, p_mapping));
|
||||
if (output_button == JOY_INVALID_OPTION && output_axis == JOY_INVALID_OPTION) {
|
||||
print_verbose(vformat("Unrecognized output string \"%s\" in mapping:\n%s", output, p_mapping));
|
||||
}
|
||||
ERR_CONTINUE_MSG(output_button != JOY_INVALID_OPTION && output_axis != JOY_INVALID_OPTION,
|
||||
vformat("Output string \"%s\" matched both button and axis in mapping:\n%s", output, p_mapping));
|
||||
|
||||
|
|
Loading…
Reference in a new issue