src/vehicle_gui.cpp
changeset 7545 9a4834d48970
parent 7498 ce6588257e8d
child 7554 076c42f44a83
--- a/src/vehicle_gui.cpp	Sun Jun 24 22:18:46 2007 +0000
+++ b/src/vehicle_gui.cpp	Sun Jun 24 22:42:11 2007 +0000
@@ -331,8 +331,7 @@
 
 			SetVScrollCount(w, WP(w, refit_d).list->num_lines);
 
-			SetDParam(0, v->string_id);
-			SetDParam(1, v->unitnumber);
+			SetDParam(0, v->index);
 			DrawWindowWidgets(w);
 
 			WP(w, refit_d).cargo = DrawVehicleRefitWindow(WP(w, refit_d).list, WP(w, refit_d).sel, w->vscroll.pos, w->vscroll.cap, w->resize.step_height);
@@ -1017,7 +1016,7 @@
 			(v->type == VEH_AIRCRAFT && v->string_id != STR_SV_AIRCRAFT_NAME)) {
 
 			/* The vehicle got a name so we will print it */
-			SetDParam(0, v->string_id);
+			SetDParam(0, v->index);
 			DrawString(x + 19, y, STR_01AB, 0);
 		}