summaryrefslogtreecommitdiff
path: root/src/industry_map.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-08-03 18:56:44 +0000
committerpeter1138 <peter1138@openttd.org>2008-08-03 18:56:44 +0000
commit1f4b89ff4b5ac012f74bda13a0262db646190676 (patch)
treee6a240e04cb87349a78b1965f844959fc5984142 /src/industry_map.h
parente434323d3883096359f6fc204583d1f07e7f2129 (diff)
downloadopenttd-1f4b89ff4b5ac012f74bda13a0262db646190676.tar.xz
(svn r13982) -Fix (r13981): And then not enough was cleared...
Diffstat (limited to 'src/industry_map.h')
-rw-r--r--src/industry_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_map.h b/src/industry_map.h
index 723b4c010..158d0d92e 100644
--- a/src/industry_map.h
+++ b/src/industry_map.h
@@ -218,7 +218,7 @@ static inline void SetIndustryConstructionCounter(TileIndex tile, byte value)
static inline void ResetIndustryConstructionStage(TileIndex tile)
{
assert(IsTileType(tile, MP_INDUSTRY));
- SB(_m[tile].m1, 0, 2, 0);
+ SB(_m[tile].m1, 0, 4, 0);
SB(_m[tile].m1, 7, 1, 0);
}