Changeset - r2562:9e792c0db2fe
[Not reviewed]
master
0 3 0
tron - 18 years ago 2005-10-29 20:28:43
tron@openttd.org
(svn r3099) Copy&pasto in r3098
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
roadveh_gui.c
Show inline comments
 
@@ -226,7 +226,7 @@ static void ShowRoadVehDetailsWindow(con
 
void CcCloneRoadVeh(bool success, uint tile, uint32 p1, uint32 p2)
 
{
 
	if (success) {
 
		const Vehicle* v = GetVehicle(_new_aircraft_id);
 
		const Vehicle* v = GetVehicle(_new_roadveh_id);
 

	
 
		ShowRoadVehViewWindow(v);
 
	}
ship_gui.c
Show inline comments
 
@@ -315,7 +315,7 @@ void CcBuildShip(bool success, TileIndex
 
void CcCloneShip(bool success, uint tile, uint32 p1, uint32 p2)
 
{
 
	if (success) {
 
		const Vehicle* v = GetVehicle(_new_aircraft_id);
 
		const Vehicle* v = GetVehicle(_new_ship_id);
 

	
 
		ShowShipViewWindow(v);
 
	}
train_gui.c
Show inline comments
 
@@ -164,7 +164,7 @@ void CcBuildLoco(bool success, TileIndex
 
void CcCloneTrain(bool success, uint tile, uint32 p1, uint32 p2)
 
{
 
	if (success) {
 
		const Vehicle* v = GetVehicle(_new_aircraft_id);
 
		const Vehicle* v = GetVehicle(_new_train_id);
 

	
 
		ShowTrainViewWindow(v);
 
	}
0 comments (0 inline, 0 general)