Changeset - r7351:84b86bb6cdeb
[Not reviewed]
master
0 1 0
glx - 17 years ago 2007-07-28 00:19:49
glx@openttd.org
(svn r10714) -Fix r10696: MSVC performance warning
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/vehicle.cpp
Show inline comments
 
@@ -859,7 +859,7 @@ static void DoDrawVehicle(const Vehicle 
 
	}
 

	
 
	AddSortableSpriteToDraw(image, pal, v->x_pos + v->x_offs, v->y_pos + v->y_offs,
 
		v->sprite_width, v->sprite_height, v->z_height, v->z_pos, v->vehstatus & VS_SHADOW);
 
		v->sprite_width, v->sprite_height, v->z_height, v->z_pos, (v->vehstatus & VS_SHADOW) != 0);
 
}
 

	
 
void ViewportAddVehicles(DrawPixelInfo *dpi)
0 comments (0 inline, 0 general)