summaryrefslogtreecommitdiff
path: root/rail_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-03-10 07:01:43 +0000
committertron <tron@openttd.org>2005-03-10 07:01:43 +0000
commit4bf173e9c1bc8fbee721ec0f452a7acce0507fc9 (patch)
treed5909b351256335ef8a005f2e4075036529c157e /rail_cmd.c
parente6feb224112ca93c97ba6572b38a8b2361565a6a (diff)
downloadopenttd-4bf173e9c1bc8fbee721ec0f452a7acce0507fc9.tar.xz
(svn r1981) Typedef some structs and enums
Diffstat (limited to 'rail_cmd.c')
-rw-r--r--rail_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rail_cmd.c b/rail_cmd.c
index b57f1979e..12c6bddd0 100644
--- a/rail_cmd.c
+++ b/rail_cmd.c
@@ -1630,7 +1630,7 @@ static void DrawTile_Track(TileInfo *ti)
if (!IS_RAIL_DEPOT(m5) && IS_RAIL_WAYPOINT(m5) && _map3_lo[ti->tile]&16) {
// look for customization
- struct StationSpec *stat = GetCustomStation(STAT_CLASS_WAYP, _map3_hi[ti->tile]);
+ StationSpec *stat = GetCustomStation(STAT_CLASS_WAYP, _map3_hi[ti->tile]);
if (stat) {
DrawTileSeqStruct const *seq;
@@ -1718,7 +1718,7 @@ void DrawTrainDepotSprite(int x, int y, int image, int railtype)
void DrawWaypointSprite(int x, int y, int stat_id, int railtype)
{
- struct StationSpec *stat;
+ StationSpec *stat;
uint32 relocation;
DrawTileSprites *cust;
DrawTileSeqStruct const *seq;