1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-27 16:39:09 +00:00

(svn r2969) -Newgrf: Show a wagon's speed limit in purchase list.

This commit is contained in:
2005-09-22 10:31:09 +00:00
parent 1195076373
commit 02c2de2a67
2 changed files with 8 additions and 0 deletions

View File

@@ -109,6 +109,13 @@ void DrawTrainWagonPurchaseInfo(int x, int y, EngineID engine_number)
SetDParam(2, refittable ? STR_9842_REFITTABLE : STR_EMPTY);
DrawString(x, y, STR_PURCHASE_INFO_CAPACITY, 0);
y += 10;
/* Wagon speed limit, displayed if above zero */
if (rvi->max_speed > 0) {
SetDParam(0, rvi->max_speed * 10 >> 4);
DrawString(x,y, STR_PURCHASE_INFO_SPEED, 0);
y += 10;
}
}
void CcBuildWagon(bool success, TileIndex tile, uint32 p1, uint32 p2)