Changeset - r1315:49a0a930df84
[Not reviewed]
master
0 1 0
truelight - 19 years ago 2005-02-06 10:39:18
truelight@openttd.org
(svn r1819) -Codechange: removed 1 unused function, and 1 unused struct (tnx to Tron)
1 file changed with 0 insertions and 14 deletions:
0 comments (0 inline, 0 general)
order_gui.c
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)