Add departure board via order subtype to remove via for prior terminus

This commit is contained in:
Jonathan G Rennison
2023-05-05 17:21:44 +01:00
parent 284390cf6a
commit b089b561a5
10 changed files with 146 additions and 22 deletions

View File

@@ -621,6 +621,11 @@ public:
return (OrderLabelSubType)GB(this->flags, 0, 8);
}
inline void SetLabelSubType(OrderLabelSubType subtype)
{
SB(this->flags, 0, 8, subtype);
}
const char *GetLabelText() const;
void SetLabelText(const char *text);