(svn r1569) -Fix: signed/unsigned mismatch

This commit is contained in:
darkvater 2005-01-19 19:32:33 +00:00
parent 2fd3553d78
commit 7837be0575
1 changed files with 1 additions and 1 deletions

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;
}
}
}