mirror of https://github.com/OpenTTD/OpenTTD
(svn r1564) ISO C90 forbids mixed declarations and code (bad bjarni, no cookie)
parent
69065b53c8
commit
a6d1544447
|
@ -1464,8 +1464,10 @@ int32 CmdReplaceVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
|
||||||
|
|
||||||
if ( rvi2->flags & RVI_MULTIHEAD && !(rvi->flags & RVI_MULTIHEAD) && v->index == first->index) {
|
if ( rvi2->flags & RVI_MULTIHEAD && !(rvi->flags & RVI_MULTIHEAD) && v->index == first->index) {
|
||||||
if (old_engine_type == u->engine_type ) {
|
if (old_engine_type == u->engine_type ) {
|
||||||
|
Vehicle *w;
|
||||||
|
|
||||||
u = GetLastVehicleInChain(v);
|
u = GetLastVehicleInChain(v);
|
||||||
Vehicle *w = GetPrevVehicleInChain(u);
|
w = GetPrevVehicleInChain(u);
|
||||||
w->next = NULL;
|
w->next = NULL;
|
||||||
DeleteVehicle(u);
|
DeleteVehicle(u);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue