Changeset - r4304:0b74ee9735d1
[Not reviewed]
master
0 1 0
Darkvater - 18 years ago 2006-08-19 15:24:40
darkvater@openttd.org
(svn r5951) - Codechange: GetVehicleOutOfTunnelTile() never did anything, and making it work properly only resulted in massive performance drops, and it not working properly also seemed to work, so make it not work properly once again.
1 file changed with 4 insertions and 0 deletions:
0 comments (0 inline, 0 general)
tunnelbridge_cmd.c
Show inline comments
 
@@ -1432,6 +1432,9 @@ static uint32 VehicleEnter_TunnelBridge(
 
 * @return the exit-tile of the tunnel based on the vehicle's direction */
 
TileIndex GetVehicleOutOfTunnelTile(const Vehicle *v)
 
{
 
#if 1
 
	return v->tile;
 
#else
 
	TileIndex tile = v->tile;
 
	DiagDirection dir = DirToDiagDir(v->direction);
 
	TileIndexDiff delta = TileOffsByDir(dir);
 
@@ -1447,6 +1450,7 @@ TileIndex GetVehicleOutOfTunnelTile(cons
 
	}
 

	
 
	return tile;
 
#endif
 
}
 

	
 
const TileTypeProcs _tile_type_tunnelbridge_procs = {
0 comments (0 inline, 0 general)