diff options
author | belugas <belugas@openttd.org> | 2007-07-20 14:49:41 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-07-20 14:49:41 +0000 |
commit | c0b044ac454a6ee045436570ed22a2acf7d62632 (patch) | |
tree | 041acb2184a9308516d356d705317e4657d146ed /src | |
parent | d93fcea1f8b706349b0e07a565bed871dc047f7b (diff) | |
download | openttd-c0b044ac454a6ee045436570ed22a2acf7d62632.tar.xz |
(svn r10635) -Codechange: Correct some typos and code beautifying (a little bit)
Diffstat (limited to 'src')
-rw-r--r-- | src/industry_cmd.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index ab0a66b3a..30ce231e1 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -64,7 +64,6 @@ void ResetIndustries() _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 @@ const IndustrySpec *GetIndustrySpec(IndustryType thistype) * 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 MakeIndustryTileBigger(TileIndex tile) } } - static void TileLoopIndustry_BubbleGenerator(TileIndex tile) { int dir; @@ -819,7 +817,6 @@ static void TileLoop_Industry(TileIndex tile) } } - static void ClickTile_Industry(TileIndex tile) { ShowIndustryViewWindow(GetIndustryIndex(tile)); @@ -1061,7 +1058,6 @@ void OnTick_Industry() } } - static bool CheckNewIndustry_NULL(TileIndex tile) { return true; @@ -1714,7 +1710,9 @@ void GenerateIndustries() } } -/* 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 @@ static void Save_INDY() { Industry *ind; - /* Write the vehicles */ + /* Write the industries */ FOR_ALL_INDUSTRIES(ind) { SlSetArrayIndex(ind->index); SlObject(ind, _industry_desc); |