From 3878c55f345e51999fd5311b7683d897f7a91aa2 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 24 Jun 2007 22:42:11 +0000 Subject: (svn r10314) -Codechange: Refer to vehicle names by index --- src/vehicle_gui.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/vehicle_gui.cpp') diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index b9bd7bb31..a2c3d6936 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -331,8 +331,7 @@ static void VehicleRefitWndProc(Window *w, WindowEvent *e) 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 @@ static void DrawVehicleListWindow(Window *w) (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); } -- cgit v1.2.3-54-g00ecf