(svn r6788) - Codechange: Add and use a function to test if a string ID is a custom name.

This commit is contained in:
peter1138
2006-10-16 10:26:22 +00:00
parent 9e8b077426
commit aa42711a59
4 changed files with 9 additions and 3 deletions

View File

@@ -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);