(svn r3090) Remove long dead pieces of code

This commit is contained in:
tron
2005-10-26 07:12:14 +00:00
parent b97473e874
commit 203726ed34
5 changed files with 1 additions and 15 deletions

View File

@@ -467,17 +467,12 @@ typedef struct {
uint best_length;
} PathFindShip;
//extern void dbg_store_path();
static bool ShipTrackFollower(TileIndex tile, PathFindShip *pfs, int track, uint length, byte *state)
{
// Found dest?
if (tile == pfs->dest_coords) {
pfs->best_bird_dist = 0;
// if (length < pfs->best_length)
// dbg_store_path();
pfs->best_length = minu(pfs->best_length, length);
return true;
}