Feature: Separate rail/road and sea/air velocity units, and add knots. (#10594)
This is achieved by packing vehicle type along with the velocity so that the string system can decode and pick the appropriate unit.
This commit is contained in:
@@ -493,7 +493,7 @@ struct BuildRailToolbarWindow : Window {
|
||||
if (rti->max_speed > 0) {
|
||||
SetDParam(0, STR_TOOLBAR_RAILTYPE_VELOCITY);
|
||||
SetDParam(1, rti->strings.toolbar_caption);
|
||||
SetDParam(2, rti->max_speed);
|
||||
SetDParam(2, PackVelocity(rti->max_speed, VEH_TRAIN));
|
||||
} else {
|
||||
SetDParam(0, rti->strings.toolbar_caption);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user