(svn r23162) -Fix (r23133): Silence gcc warning.

This commit is contained in:
frosch 2011-11-08 17:42:34 +00:00
parent 4d2ca18ee1
commit 6701a2af45
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ static const Order *ResolveOrder(VehicleID vehicle_id, AIOrder::OrderPosition or
* @param order_position The OrderPosition to convert.
* @return An OpenTTD-internal index for the same order.
*/
static const int AIOrderPositionToRealOrderPosition(VehicleID vehicle_id, AIOrder::OrderPosition order_position)
static int AIOrderPositionToRealOrderPosition(VehicleID vehicle_id, AIOrder::OrderPosition order_position)
{
const Vehicle *v = ::Vehicle::Get(vehicle_id);
if (order_position == v->GetNumManualOrders()) return v->GetNumOrders();