Codefix 21bee91: Doxygen copied documentation wrongly (#15739)

This commit is contained in:
Cyprian Klimaszewski
2026-06-17 17:39:25 +02:00
committed by GitHub
parent b2c9e33e0f
commit 9e85e23cbc
+3 -3
View File
@@ -68,9 +68,9 @@ struct Town : TownPool::PoolItem<&_town_pool> {
/** @name Town name.
* @{ */
uint32_t townnamegrfid = 0;
uint16_t townnametype = 0;
uint32_t townnameparts = 0;
uint32_t townnamegrfid = 0; ///< NewGRF id that contains the name. O is not used.
uint16_t townnametype = 0; ///< The style of the name.
uint32_t townnameparts = 0; ///< Random number that give unique town name when passed to generator.
std::string name{}; ///< Custom town name. If empty, the town was not renamed and uses the generated name.
mutable std::string cached_name{}; ///< NOSAVE: Cache of the resolved name of the town, if not using a custom town name
/** @} */