diff --git a/src/autoreplace_gui.cpp b/src/autoreplace_gui.cpp index 6ef7c7d308..2915f8476b 100644 --- a/src/autoreplace_gui.cpp +++ b/src/autoreplace_gui.cpp @@ -261,14 +261,14 @@ static void ReplaceVehicleWndProc(Window *w, WindowEvent *e) /* set wagon/engine button */ SetDParam(2, WP(w, replaceveh_d).wagon_btnstate ? STR_ENGINES : STR_WAGONS); - } - w->widget[13].color = _player_colors[_local_player]; // sets the colour of that art thing - w->widget[16].color = _player_colors[_local_player]; // sets the colour of that art thing + /* sets the colour of that art thing */ + w->widget[13].color = _player_colors[_local_player]; + w->widget[16].color = _player_colors[_local_player]; + } DrawWindowWidgets(w); - if (w->window_number == VEH_TRAIN) { /* Draw the selected railtype in the pulldown menu */ RailType railtype = _railtype_selected_in_replace_gui;