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

pull/155/head
truelight 20 years ago
parent 79d1ed2c66
commit 5f4b8ef232

@ -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;

Loading…
Cancel
Save