(svn r23777) -Codechange: refactor allocating memory and fetching strings into a single function for scripts

This commit is contained in:
rubidium
2012-01-08 21:48:05 +00:00
parent 02af3fe2fa
commit 4ad23bbf98
14 changed files with 27 additions and 60 deletions

View File

@@ -270,12 +270,8 @@
{
if (!IsValidVehicle(vehicle_id)) return NULL;
static const int len = 64;
char *vehicle_name = MallocT<char>(len);
::SetDParam(0, vehicle_id);
::GetString(vehicle_name, STR_VEHICLE_NAME, &vehicle_name[len - 1]);
return vehicle_name;
return GetString(STR_VEHICLE_NAME);
}
/* static */ int32 ScriptVehicle::GetAge(VehicleID vehicle_id)