Changeset - r17840:aa8c9ed1d256
[Not reviewed]
master
0 1 0
frosch - 13 years ago 2011-07-07 20:35:48
frosch@openttd.org
(svn r22641) -Fix (r22639): Warning about uninitialised fields.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/table/engines.h
Show inline comments
 
@@ -552,7 +552,7 @@ static const RailVehicleInfo _orig_rail_
 
 * @param f sound effect
 
 * @param g refittable
 
 */
 
#define SVI(a, b, c, d, e, f, g) { a, b, c, d, e, f, g, VE_DEFAULT }
 
#define SVI(a, b, c, d, e, f, g) { a, b, c, d, e, f, g, VE_DEFAULT, 0, 0 }
 
static const ShipVehicleInfo _orig_ship_vehicle_info[] = {
 
	/*   image_index    capacity                   refittable
 
	 *   |    cost_factor    running_cost          |
0 comments (0 inline, 0 general)