From f317d9d5b89f682e073a5955be48dda16cd4d2aa Mon Sep 17 00:00:00 2001 From: Keiya Date: Fri, 14 May 2021 17:35:56 -0500 Subject: [PATCH] Fix overly-long comment (#14650) There! Are you happy now, clang-format!? Co-authored-by: Keiya Flee --- src/openrct2/peep/Peep.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openrct2/peep/Peep.h b/src/openrct2/peep/Peep.h index 840e87e380..f248a623d6 100644 --- a/src/openrct2/peep/Peep.h +++ b/src/openrct2/peep/Peep.h @@ -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;