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:
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user