summaryrefslogtreecommitdiff
path: root/src/vehicle_func.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-20 10:13:54 +0000
committerrubidium <rubidium@openttd.org>2008-04-20 10:13:54 +0000
commit40b19f39975731990f1c6687f99e2593f345e4f9 (patch)
tree417e4bd30794e812ee9200d90aec95d9c7d5dc14 /src/vehicle_func.h
parentfaa0ba46d077f3e144837ea53cc8c4a5db546444 (diff)
downloadopenttd-40b19f39975731990f1c6687f99e2593f345e4f9.tar.xz
(svn r12803) -Cleanup: rename SpecialVehicle to EffectVehicle to have a uniform naming of the thing instead of using both names for the same thing.
Diffstat (limited to 'src/vehicle_func.h')
-rw-r--r--src/vehicle_func.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vehicle_func.h b/src/vehicle_func.h
index 2d44eb6a9..2417b6642 100644
--- a/src/vehicle_func.h
+++ b/src/vehicle_func.h
@@ -171,9 +171,9 @@ static inline uint32 GetCmdSendToDepot(const BaseVehicle *v)
bool EnsureNoVehicleOnGround(TileIndex tile);
void StopAllVehicles();
-Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicle type);
-Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicle type);
-Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicle type);
+Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicleType type);
+Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicleType type);
+Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicleType type);
extern VehicleID _vehicle_id_ctr_day;
extern Vehicle *_place_clicked_vehicle;