changeset 9839:6d9cff756b2f draft

(svn r13982) -Fix (r13981): And then not enough was cleared...
author peter1138 <peter1138@openttd.org>
date Sun, 03 Aug 2008 18:56:44 +0000
parents 96228d54928c
children b2082b3c8224
files src/industry_map.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/industry_map.h
+++ b/src/industry_map.h
@@ -218,7 +218,7 @@
 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);
 }