(svn r11223) -Fix[FS#1306]: Rename and refactor adequately a function that actually returns void and set bits (smatz).
--- a/src/industry_map.h Sat Oct 06 22:08:04 2007 +0000
+++ b/src/industry_map.h Sun Oct 07 01:37:06 2007 +0000
@@ -274,7 +274,7 @@
* @param bits the random bits
* @pre IsTileType(tile, MP_INDUSTRY)
*/
-static inline byte GetIndustryRandomBits(TileIndex tile, byte bits)
+static inline void SetIndustryRandomBits(TileIndex tile, byte bits)
{
assert(IsTileType(tile, MP_INDUSTRY));
_me[tile].m7 = bits;