vehicle.c
changeset 534 306bc86eb23e
parent 507 04b5403aaf6b
child 537 901bd4c077f0
--- a/vehicle.c	Wed Dec 01 21:35:14 2004 +0000
+++ b/vehicle.c	Thu Dec 02 22:53:07 2004 +0000
@@ -112,7 +112,7 @@
 void UpdateWaypointSign(Waypoint *cp)
 {
 	Point pt = RemapCoords2(GET_TILE_X(cp->xy)*16, GET_TILE_Y(cp->xy)*16);
-	SET_DPARAM16(0, cp - _waypoints);
+	SetDParam(0, cp - _waypoints);
 	UpdateViewportSignPos(&cp->sign, pt.x, pt.y - 0x20, STR_WAYPOINT_VIEWPORT);
 }
 
@@ -1309,8 +1309,8 @@
 	if (_patches.autorenew)
 		return;
 
-	SET_DPARAM16(0, _vehicle_type_names[v->type - 0x10]);
-	SET_DPARAM16(1, v->unitnumber);
+	SetDParam(0, _vehicle_type_names[v->type - 0x10]);
+	SetDParam(1, v->unitnumber);
 	AddNewsItem(msg, NEWS_FLAGS(NM_SMALL, NF_VIEWPORT|NF_VEHICLE, NT_ADVICE, 0), v->index, 0);
 }
 
@@ -1350,7 +1350,7 @@
 	if (DEREF_PLAYER(v->owner)->money64 < _patches.autorenew_money + build_cost - v->value) {
 		if (v->owner == _local_player) {
 			int message;
-			SET_DPARAM16(0, v->unitnumber);
+			SetDParam(0, v->unitnumber);
 			switch (v->type) {
 				case VEH_Train: message = STR_TRAIN_AUTORENEW_FAILED; break;
 				case VEH_Road: message = STR_ROADVEHICLE_AUTORENEW_FAILED; break;