(svn r242) -Fix: Pathfinding bug for road vehicles introduced in r160 fixed (blathijs)

-Fix: Pathfinding under bridges bug for ships introduced in r160 fixed (Darkvater)
This commit is contained in:
darkvater
2004-09-14 01:21:07 +00:00
parent 72457bac0d
commit bf703a0e82
5 changed files with 31 additions and 28 deletions

6
ttd.h
View File

@@ -104,10 +104,10 @@ typedef enum TransportTypes {
* bridges. For now, you should just not change the values for road
* and rail.
*/
TRANSPORT_RAIL = 0,
TRANSPORT_RAIL = 0,
TRANSPORT_ROAD = 1,
TRANSPORT_WATER,
TRANSPORT_MAX
TRANSPORT_WATER, // = 2
TRANSPORT_MAX // = 3
} TransportType;
typedef struct TileInfo {