forked from mirror/OpenTTD
(svn r2324) Introduce _cmd_text for passing strings with a command instead of abusing _decode_parameters as text buffer. This should prevent several possible buffer overruns and is a bit cleaner to use. As bonus it reduces the size of most command packets by 79 bytes.
This commit is contained in:
@@ -758,7 +758,7 @@ void RestoreVehicleOrders(Vehicle *v, BackuppedOrders *bak)
|
||||
|
||||
/* If we have a custom name, process that */
|
||||
if (bak->name[0] != 0) {
|
||||
strcpy((char*)_decode_parameters, bak->name);
|
||||
_cmd_text = bak->name;
|
||||
DoCommandP(0, v->index, 0, NULL, CMD_NAME_VEHICLE);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user