summaryrefslogtreecommitdiff
path: root/src/aystar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/aystar.h')
-rw-r--r--src/aystar.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/aystar.h b/src/aystar.h
index e2b2d73e1..a759b5b22 100644
--- a/src/aystar.h
+++ b/src/aystar.h
@@ -13,6 +13,7 @@
#include "queue.h"
#include "tile_type.h"
+#include "track_type.h"
//#define AYSTAR_DEBUG
enum {
@@ -30,7 +31,7 @@ enum{
struct AyStarNode {
TileIndex tile;
- int direction;
+ Trackdir direction;
uint user_data[2];
};