Codechange: Remove Track{dir,}{Bits,}Byte types

This commit is contained in:
Charles Pigott
2019-04-22 08:03:04 +01:00
committed by PeterN
parent 931d32f414
commit 9f3928658b
6 changed files with 10 additions and 18 deletions

View File

@@ -84,7 +84,7 @@ void RoadVehUpdateCache(RoadVehicle *v, bool same_length = false);
void GetRoadVehSpriteSize(EngineID engine, uint &width, uint &height, int &xoffs, int &yoffs, EngineImageType image_type);
struct RoadVehPathCache {
std::deque<TrackdirByte> td;
std::deque<Trackdir> td;
std::deque<TileIndex> tile;
inline bool empty() const { return this->td.empty(); }