Changeset - r6568:4082d09c85a9
[Not reviewed]
master
0 1 0
glx - 17 years ago 2007-05-03 17:07:51
glx@openttd.org
(svn r9773) -Fix r9772: MSVC warning
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/vehicle.cpp
Show inline comments
 
@@ -756,7 +756,7 @@ bool CanFillVehicle(Vehicle *front_v)
 
				IsTileType(TILE_ADDXY(tile, -2,  0), MP_STATION)
 
			)));
 

	
 
	bool full_load = front_v->current_order.flags & OF_FULL_LOAD;
 
	bool full_load = HASBIT(front_v->current_order.flags, OFB_FULL_LOAD);
 

	
 
	/* If patch is active, use alternative CanFillVehicle-function */
 
	if (_patches.full_load_any && full_load) return CanFillVehicle_FullLoadAny(front_v);
0 comments (0 inline, 0 general)