src/industry_cmd.cpp
changeset 7288 9059a49c2102
parent 7266 b16e67e992b4
child 7290 bb6d72d5230a
--- a/src/industry_cmd.cpp	Thu Jul 19 17:28:55 2007 +0000
+++ b/src/industry_cmd.cpp	Fri Jul 20 14:49:41 2007 +0000
@@ -64,7 +64,6 @@
 		_industry_specs[i].enabled = HASBIT(_origin_industry_specs[i].climate_availability, _opt.landscape);
 	}
 
-
 	memset(&_industry_tile_specs, 0, sizeof(_industry_tile_specs));
 	memcpy(&_industry_tile_specs, &_origin_industry_tile_specs, sizeof(_origin_industry_tile_specs));
 }
@@ -123,7 +122,7 @@
  * Accessor for array _industry_tile_specs.
  * This will ensure at once : proper access and
  * not allowing modifications of it.
- * @param gfx of industrytile (which is the index in _industry_specs)
+ * @param gfx of industrytile (which is the index in _industry_tile_specs)
  * @pre gfx < INVALID_INDUSTRYTILE
  * @return a pointer to the corresponding industrytile spec
  **/
@@ -684,7 +683,6 @@
 	}
 }
 
-
 static void TileLoopIndustry_BubbleGenerator(TileIndex tile)
 {
 	int dir;
@@ -819,7 +817,6 @@
 	}
 }
 
-
 static void ClickTile_Industry(TileIndex tile)
 {
 	ShowIndustryViewWindow(GetIndustryIndex(tile));
@@ -1061,7 +1058,6 @@
 	}
 }
 
-
 static bool CheckNewIndustry_NULL(TileIndex tile)
 {
 	return true;
@@ -1714,7 +1710,9 @@
 	}
 }
 
-/* Change industry production or do closure */
+/** Change industry production or do closure
+ * @param i Industry for which changes are performed
+ */
 static void ExtChangeIndustryProduction(Industry *i)
 {
 	bool closeit = true;
@@ -2050,7 +2048,7 @@
 {
 	Industry *ind;
 
-	/* Write the vehicles */
+	/* Write the industries */
 	FOR_ALL_INDUSTRIES(ind) {
 		SlSetArrayIndex(ind->index);
 		SlObject(ind, _industry_desc);