Fix warning message

Mouse "wheel button" is meaningless :)
This commit is contained in:
Romain Vimont 2018-03-15 16:14:40 +01:00
parent 080df5eb5d
commit f3e8834a3c

View file

@ -263,7 +263,7 @@ void input_manager_process_mouse_wheel(struct input_manager *input_manager,
struct control_event control_event;
if (mouse_wheel_from_sdl_to_android(event, position, &control_event)) {
if (!controller_push_event(input_manager->controller, &control_event)) {
LOGW("Cannot send wheel button event");
LOGW("Cannot send mouse wheel event");
}
}
}