From bb5d09982fbb1adc64e7b65f5a6c0abbf4f107ed Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Wed, 29 Sep 2021 23:50:23 +0200 Subject: [PATCH] Properly name argument --- src/openrct2/world/TileInspector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/world/TileInspector.h b/src/openrct2/world/TileInspector.h index 212320fa4c..0f204f8bf5 100644 --- a/src/openrct2/world/TileInspector.h +++ b/src/openrct2/world/TileInspector.h @@ -31,7 +31,7 @@ namespace OpenRCT2::TileInspector GameActionResultPtr PasteElementAt(const CoordsXY& loc, TileElement element, bool isExecuting); GameActionResultPtr SortElementsAt(const CoordsXY& loc, bool isExecuting); GameActionResultPtr AnyBaseHeightOffset(const CoordsXY& loc, int16_t elementIndex, int8_t heightOffset, bool isExecuting); - GameActionResultPtr SurfaceShowParkFences(const CoordsXY& loc, bool enabled, bool isExecuting); + GameActionResultPtr SurfaceShowParkFences(const CoordsXY& loc, bool showFences, bool isExecuting); GameActionResultPtr SurfaceToggleCorner(const CoordsXY& loc, int32_t cornerIndex, bool isExecuting); GameActionResultPtr SurfaceToggleDiagonal(const CoordsXY& loc, bool isExecuting); GameActionResultPtr PathSetSloped(const CoordsXY& loc, int32_t elementIndex, bool sloped, bool isExecuting);