From 2ad1279725c08c98db9eaaceb684709f59a6650f Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 4 Feb 2011 14:37:24 +0000 Subject: (svn r21954) -Cleanup: remove setting to not show the vehicle speed in the vehicle view --- src/ship_cmd.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/ship_cmd.cpp') diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp index 6e733d360..972cf9961 100644 --- a/src/ship_cmd.cpp +++ b/src/ship_cmd.cpp @@ -307,9 +307,7 @@ static bool ShipAccelerate(Vehicle *v) /* updates statusbar only if speed have changed to save CPU time */ if (spd != v->cur_speed) { v->cur_speed = spd; - if (_settings_client.gui.vehicle_speed) { - SetWindowWidgetDirty(WC_VEHICLE_VIEW, v->index, VVW_WIDGET_START_STOP_VEH); - } + SetWindowWidgetDirty(WC_VEHICLE_VIEW, v->index, VVW_WIDGET_START_STOP_VEH); } /* Convert direction-indepenent speed into direction-dependent speed. (old movement method) */ -- cgit v1.2.3-54-g00ecf