summaryrefslogtreecommitdiff
path: root/aystar.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-06-24 12:38:35 +0000
committertron <tron@openttd.org>2005-06-24 12:38:35 +0000
commit3154e7148d00f0203760aefbc6f8a5bd210cc30c (patch)
tree17004bd894946da466a10e50a86ff66225cf8896 /aystar.h
parent3448729ff36ca9e91d91c256d9a5381ba901230b (diff)
downloadopenttd-3154e7148d00f0203760aefbc6f8a5bd210cc30c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'aystar.h')
-rw-r--r--aystar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/aystar.h b/aystar.h
index 56df61dce..adda33aba 100644
--- a/aystar.h
+++ b/aystar.h
@@ -27,7 +27,7 @@ enum{
typedef struct AyStarNode AyStarNode;
struct AyStarNode {
- uint tile;
+ TileIndex tile;
uint direction;
uint user_data[2];
};