1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Remove unneeded parameter.

This commit is contained in:
Bartosz Taudul
2020-08-01 12:03:11 +02:00
parent 6836014caa
commit 6d0d12ce78
3 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -38,12 +38,12 @@ bool IsMouseClicked( ImGuiMouseButton button )
return s_mouse.mouseClicked[button];
}
bool IsMouseDragging( ImGuiMouseButton button, float lock_threshold )
bool IsMouseDragging( ImGuiMouseButton button )
{
return s_mouse.mouseDragging[button];
}
ImVec2 GetMouseDragDelta( ImGuiMouseButton button, float lock_threshold )
ImVec2 GetMouseDragDelta( ImGuiMouseButton button )
{
return s_mouse.mouseDragDelta[button];
}