From 010e43e6ff0e09c2b81b2113704b61e2fd719906 Mon Sep 17 00:00:00 2001 From: Peter Froud Date: Wed, 24 Jan 2024 23:51:40 -0800 Subject: [PATCH] Format code --- src/openrct2/actions/FootpathRemoveAction.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openrct2/actions/FootpathRemoveAction.cpp b/src/openrct2/actions/FootpathRemoveAction.cpp index ec29ee89f7..5f4c14aba8 100644 --- a/src/openrct2/actions/FootpathRemoveAction.cpp +++ b/src/openrct2/actions/FootpathRemoveAction.cpp @@ -52,7 +52,8 @@ GameActions::Result FootpathRemoveAction::Query() const if (!LocationValid(_loc)) { - return GameActions::Result(GameActions::Status::InvalidParameters, STR_CANT_REMOVE_FOOTPATH_FROM_HERE, STR_OFF_EDGE_OF_MAP); + return GameActions::Result( + GameActions::Status::InvalidParameters, STR_CANT_REMOVE_FOOTPATH_FROM_HERE, STR_OFF_EDGE_OF_MAP); } if (!((gScreenFlags & SCREEN_FLAGS_SCENARIO_EDITOR) || gCheatsSandboxMode) && !MapIsLocationOwned(_loc))