changeset 7288:6daddeff0236 draft

(svn r10635) -Codechange: Correct some typos and code beautifying (a little bit)
author belugas <belugas@openttd.org>
date Fri, 20 Jul 2007 14:49:41 +0000
parents 93dc4159295a
children 3c60ef5b558f
files src/industry_cmd.cpp
diffstat 1 files changed, 5 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -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);