src/vehicle_gui.cpp
changeset 7498 ce6588257e8d
parent 7487 9ef3bd32c2eb
child 7545 9a4834d48970
--- a/src/vehicle_gui.cpp	Thu Jun 21 17:18:33 2007 +0000
+++ b/src/vehicle_gui.cpp	Thu Jun 21 17:25:17 2007 +0000
@@ -346,7 +346,7 @@
 				if (CmdSucceeded(cost)) {
 					SetDParam(0, WP(w, refit_d).cargo->cargo);
 					SetDParam(1, _returned_refit_capacity);
-					SetDParamMoney(2, cost.GetCost());
+					SetDParam(2, cost.GetCost());
 					DrawString(2, w->widget[5].top + 1, STR_9840_NEW_CAPACITY_COST_OF_REFIT, 0);
 				}
 			}
@@ -1005,8 +1005,8 @@
 		const Vehicle *v = vl->sort_list[i];
 		StringID str;
 
-		SetDParamMoney(0, v->profit_this_year);
-		SetDParamMoney(1, v->profit_last_year);
+		SetDParam(0, v->profit_this_year);
+		SetDParam(1, v->profit_last_year);
 
 		DrawVehicleImage(v, x + 19, y + 6, w->widget[VLW_WIDGET_LIST].right - w->widget[VLW_WIDGET_LIST].left - 20, 0, INVALID_VEHICLE);
 		DrawString(x + 19, y + w->resize.step_height - 8, STR_0198_PROFIT_THIS_YEAR_LAST_YEAR, 0);