From 01a997cd114b6891091b189fc0d17acf2ac82a49 Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Thu, 27 Jan 2022 11:04:33 +0100 Subject: [PATCH] Unname the structs themselves --- src/openrct2/world/TileElement.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/world/TileElement.h b/src/openrct2/world/TileElement.h index 1990a43629..e21ff2d912 100644 --- a/src/openrct2/world/TileElement.h +++ b/src/openrct2/world/TileElement.h @@ -329,7 +329,7 @@ private: track_type_t TrackType; union { - struct URide + struct { uint8_t Sequence; uint8_t ColourScheme; @@ -344,7 +344,7 @@ private: }; StationIndex stationIndex; } URide; - struct UMaze + struct { uint16_t MazeEntry; // 6 } UMaze;