From 3fa4b7b964bdbfbed0f3ad1a3a0d15ac6207ff5e Mon Sep 17 00:00:00 2001 From: Tulio Leao Date: Tue, 12 Nov 2019 00:27:59 -0300 Subject: [PATCH] Fix clang-format --- src/openrct2-ui/windows/Footpath.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/openrct2-ui/windows/Footpath.cpp b/src/openrct2-ui/windows/Footpath.cpp index 3902d97a23..9c18ea01d3 100644 --- a/src/openrct2-ui/windows/Footpath.cpp +++ b/src/openrct2-ui/windows/Footpath.cpp @@ -718,8 +718,7 @@ static void window_footpath_set_provisional_path_at_point(ScreenCoordsXY screenC LocationXY16 mapCoord = {}; get_map_coordinates_from_pos( screenCoords.x, screenCoords.y, VIEWPORT_INTERACTION_MASK_FOOTPATH & VIEWPORT_INTERACTION_MASK_TERRAIN, &mapCoord.x, - &mapCoord.y, - &interactionType, &tileElement, nullptr); + &mapCoord.y, &interactionType, &tileElement, nullptr); screenCoords.x = mapCoord.x; screenCoords.y = mapCoord.y; @@ -854,8 +853,8 @@ static void window_footpath_place_path_at_point(ScreenCoordsXY screenCoords) LocationXY16 mapCoord = {}; get_map_coordinates_from_pos( - screenCoords.x, screenCoords.y, VIEWPORT_INTERACTION_MASK_FOOTPATH & VIEWPORT_INTERACTION_MASK_TERRAIN, &mapCoord.x, &mapCoord.y, - &interactionType, &tileElement, nullptr); + screenCoords.x, screenCoords.y, VIEWPORT_INTERACTION_MASK_FOOTPATH & VIEWPORT_INTERACTION_MASK_TERRAIN, &mapCoord.x, + &mapCoord.y, &interactionType, &tileElement, nullptr); screenCoords.x = mapCoord.x; screenCoords.y = mapCoord.y;