summaryrefslogtreecommitdiff
path: root/vehicle.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-10-16 10:26:22 +0000
committerpeter1138 <peter1138@openttd.org>2006-10-16 10:26:22 +0000
commitaa42711a5949f2010561ce1605cbc9a247a015ed (patch)
tree90c65aefa31cde42f220e89775a81b38aaa76c5e /vehicle.c
parent9e8b0774265f499c8b3df789fb24f1882bb4ed10 (diff)
downloadopenttd-aa42711a5949f2010561ce1605cbc9a247a015ed.tar.xz
(svn r6788) - Codechange: Add and use a function to test if a string ID is a custom name.
Diffstat (limited to 'vehicle.c')
-rw-r--r--vehicle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vehicle.c b/vehicle.c
index e4b1ddbf7..bccc9a775 100644
--- a/vehicle.c
+++ b/vehicle.c
@@ -2073,7 +2073,7 @@ static int32 ReplaceVehicle(Vehicle **w, byte flags, int32 total_cost)
MoveVehicleCargo(new_v->type == VEH_Train ? GetFirstVehicleInChain(new_v) : new_v, old_v);
// Get the name of the old vehicle if it has a custom name.
- if ((old_v->string_id & 0xF800) != 0x7800) {
+ if (!IsCustomName(old_v->string_id)) {
vehicle_name[0] = '\0';
} else {
GetName(old_v->string_id & 0x7FF, vehicle_name);