1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix overly-long comment (#14650)

There! Are you happy now, clang-format!?

Co-authored-by: Keiya Flee <keiya@tinyfairy.xyz>
This commit is contained in:
Keiya
2021-05-14 17:35:56 -05:00
committed by GitHub
parent 7171c8ac0d
commit f317d9d5b8

View File

@@ -865,7 +865,8 @@ private:
};
// The number of elements in the PatrolArea.Data array per staff member. Every bit in the array represents a 4x4 square.
// Right now, it's a 32-bit array like in RCT2. 32 * 2048 = 65536 bits, which is also the number of 4x4 squares on a 1024x1024 map.
// Right now, it's a 32-bit array like in RCT2. 32 * 2048 = 65536 bits, which is also the number of 4x4 squares on a 1024x1024
// map.
constexpr size_t STAFF_PATROL_AREA_BLOCKS_PER_LINE = 1024 / 4;
constexpr size_t STAFF_PATROL_AREA_SIZE = (STAFF_PATROL_AREA_BLOCKS_PER_LINE * STAFF_PATROL_AREA_BLOCKS_PER_LINE) / 32;