From 1f4b89ff4b5ac012f74bda13a0262db646190676 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 3 Aug 2008 18:56:44 +0000 Subject: [PATCH] (svn r13982) -Fix (r13981): And then not enough was cleared... --- src/industry_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/industry_map.h b/src/industry_map.h index 723b4c0107..158d0d92e4 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); }