summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--order_gui.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/order_gui.c b/order_gui.c
index 298b2ba67..a7dce599d 100644
--- a/order_gui.c
+++ b/order_gui.c
@@ -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;