Re-order various structs to reduce holes/padding

This commit is contained in:
Jonathan G Rennison
2024-01-23 19:19:31 +00:00
parent b64a51876a
commit b01fd1607a
17 changed files with 97 additions and 96 deletions

View File

@@ -144,15 +144,15 @@ struct PlanLine {
struct Plan : PlanPool::PoolItem<&_plan_pool> {
Owner owner;
Colours colour;
Date creation_date;
PlanLineVector lines;
PlanLine *temp_line;
std::string name;
TileIndex last_tile;
bool visible;
bool visible_by_all;
bool show_lines;
Date creation_date;
std::string name;
Colours colour;
Plan(Owner owner = INVALID_OWNER)
{