1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

[Wayland] Fix typo in input code

This commit is contained in:
A Thousand Ships
2024-03-20 10:37:08 +01:00
parent fe01776f05
commit 9aa99c0a9d

View File

@@ -2454,7 +2454,7 @@ void WaylandThread::_wp_tablet_tool_on_frame(void *data, struct zwp_tablet_tool_
mm->set_relative_screen_position(mm->get_relative());
Vector2i pos_delta = td.position - old_td.position;
uint32_t time_delta = td.motion_time - td.motion_time;
uint32_t time_delta = td.motion_time - old_td.motion_time;
mm->set_velocity((Vector2)pos_delta / time_delta);
Ref<InputEventMessage> inputev_msg;