From 7e2ff6d752cbd35f3ca6ec0d22ddb87b48bfe7c8 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sat, 16 Mar 2019 15:43:36 +0100 Subject: [PATCH] Fix alignment --- src/openrct2/world/Footpath.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/openrct2/world/Footpath.h b/src/openrct2/world/Footpath.h index 4b08589347..2266989c83 100644 --- a/src/openrct2/world/Footpath.h +++ b/src/openrct2/world/Footpath.h @@ -36,12 +36,12 @@ enum class RailingEntrySupportType : uint8_t #pragma pack(push, 1) struct rct_footpath_entry { - rct_string_id string_idx; // 0x00 - uint32_t image; // 0x02 - uint32_t bridge_image; // 0x06 + rct_string_id string_idx; // 0x00 + uint32_t image; // 0x02 + uint32_t bridge_image; // 0x06 RailingEntrySupportType support_type; // 0x0A - uint8_t flags; // 0x0B - uint8_t scrolling_mode; // 0x0C + uint8_t flags; // 0x0B + uint8_t scrolling_mode; // 0x0C }; assert_struct_size(rct_footpath_entry, 13); #pragma pack(pop)