(svn r1819) -Codechange: removed 1 unused function, and 1 unused struct (tnx to Tron)

This commit is contained in:
truelight 2005-02-06 10:39:18 +00:00
parent 020c1e9b6c
commit ccf3c71903

View File

@ -153,20 +153,6 @@ static void DrawOrdersWindow(Window *w)
}
}
// lookup a vehicle on a tile
typedef struct {
TileIndex tile;
byte owner;
byte type;
} FindVehS;
static void *FindVehicleCallb(Vehicle *v, FindVehS *f)
{
if (v->tile != f->tile || v->owner != f->owner || v->vehstatus & VS_HIDDEN ) return NULL;
return v;
}
static Order GetOrderCmdFromTile(Vehicle *v, uint tile)
{
Order order;