1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-23 22:49:09 +00:00

(svn r1569) -Fix: signed/unsigned mismatch

This commit is contained in:
darkvater
2005-01-19 19:32:33 +00:00
parent 2fd3553d78
commit 7837be0575

View File

@@ -1375,7 +1375,7 @@ int32 CmdReplaceVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
}
} else {
if ( u->engine_type == old_engine_type && RailVehInfo(old_engine_type)->flags & RVI_MULTIHEAD) {
if (v->next != NULL) rear_engine_cost = -u->value;
if (v->next != NULL) rear_engine_cost = -(int32)u->value;
}
}
}