Changeset - r9232:bfa5965b4b61
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2008-05-15 08:01:46
rubidium@openttd.org
(svn r13098) -Fix [FS#2016]: segmentation fault on opening an already opened depot.
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/depot_gui.cpp
Show inline comments
 
@@ -992,24 +992,26 @@ void ShowDepotWindow(TileIndex tile, Veh
 
	switch (type) {
 
		default: NOT_REACHED();
 
		case VEH_TRAIN:
 
			w = AllocateWindowDescFront<DepotWindow>(&_train_depot_desc, tile); break;
 
		case VEH_ROAD:
 
			w = AllocateWindowDescFront<DepotWindow>(&_road_depot_desc, tile); break;
 
		case VEH_SHIP:
 
			w = AllocateWindowDescFront<DepotWindow>(&_ship_depot_desc, tile); break;
 
		case VEH_AIRCRAFT:
 
			w = AllocateWindowDescFront<DepotWindow>(&_aircraft_depot_desc, tile); break;
 
	}
 

	
 
	if (w == NULL) return;
 

	
 
	w->caption_color = GetTileOwner(tile);
 
	w->CreateDepotListWindow(type);
 
}
 

	
 
/** Removes the highlight of a vehicle in a depot window
 
 * @param *v Vehicle to remove all highlights from
 
 */
 
void DeleteDepotHighlightOfVehicle(const Vehicle *v)
 
{
 
	DepotWindow *w;
 

	
 
	/* If we haven't got any vehicles on the mouse pointer, we haven't got any highlighted in any depots either
0 comments (0 inline, 0 general)