1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-19 18:32:35 +01:00

(svn r13647) -Codechange: replace MAX_UVALUE() for std types with the equivalent constant

This commit is contained in:
skidd13
2008-06-27 17:46:43 +00:00
parent de86235274
commit 9335a28cb5
6 changed files with 8 additions and 8 deletions

View File

@@ -242,7 +242,7 @@ bool CargoList::MoveTo(CargoList *dest, uint count, CargoList::MoveToAction mta,
if (mta == MTA_FINAL_DELIVERY && !tmp.Empty()) {
/* There are some packets that could not be delivered at the station, put them back */
tmp.MoveTo(this, MAX_UVALUE(uint));
tmp.MoveTo(this, UINT_MAX);
tmp.packets.clear();
}