diff options
author | Michael Pavone <pavone@retrodev.com> | 2019-04-18 19:48:04 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2019-04-18 19:48:04 -0700 |
commit | 2a700065e99ba29857b9f429aa8997af24116760 (patch) | |
tree | fbe37eeb5514198f7f31a4ac6923a0a44964a696 /bindings.c | |
parent | aa41d9724e763de7a64776a7a2c262a5757383f9 (diff) | |
parent | 05af6e2720d03b538e64a73a84af1f4c4f8ce762 (diff) |
Merge
Diffstat (limited to 'bindings.c')
-rw-r--r-- | bindings.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -816,7 +816,7 @@ void process_pad_button(char *key, tern_val val, uint8_t valtype, void *data) if (hostbutton == RENDER_INVALID_NAME) { warning("%s is not a valid gamepad input name\n", key); } else if (hostbutton == RENDER_NOT_MAPPED && hostpadnum != map_warning_pad) { - warning("No SDL 2 mapping exists for input %s on gamepad %d\n", key, hostpadnum); + debug_message("No SDL 2 mapping exists for input %s on gamepad %d\n", key, hostpadnum); map_warning_pad = hostpadnum; } return; @@ -863,7 +863,7 @@ void process_pad_axis(char *key, tern_val val, uint8_t valtype, void *data) if (axis == RENDER_INVALID_NAME) { warning("%s is not a valid gamepad input name\n", key); } else if (axis == RENDER_NOT_MAPPED && hostpadnum != map_warning_pad) { - warning("No SDL 2 mapping exists for input %s on gamepad %d\n", key, hostpadnum); + debug_message("No SDL 2 mapping exists for input %s on gamepad %d\n", key, hostpadnum); map_warning_pad = hostpadnum; } goto done; |