summaryrefslogtreecommitdiff
path: root/src/roadveh.h
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2019-04-22 08:03:04 +0100
committerPeterN <peter@fuzzle.org>2019-04-29 17:40:22 +0100
commit9f3928658bb3f8aaf21b17e0144cb09722474fff (patch)
tree4bb17710202180968891733fd0a50c5d71f60974 /src/roadveh.h
parent931d32f4145e36ef08b432314353ff9f058f6a08 (diff)
downloadopenttd-9f3928658bb3f8aaf21b17e0144cb09722474fff.tar.xz
Codechange: Remove Track{dir,}{Bits,}Byte types
Diffstat (limited to 'src/roadveh.h')
-rw-r--r--src/roadveh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roadveh.h b/src/roadveh.h
index 22f827b1d..7c8f32d0f 100644
--- a/src/roadveh.h
+++ b/src/roadveh.h
@@ -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(); }