src/tile.h
changeset 5847 9ce114e1d90d
parent 5838 9c3129cb019b
child 6298 c30fe89622df
--- a/src/tile.h	Thu Jan 11 01:21:55 2007 +0000
+++ b/src/tile.h	Thu Jan 11 02:05:13 2007 +0000
@@ -105,7 +105,7 @@
 static inline void SetTropicZone(TileIndex tile, TropicZone type)
 {
 	assert(tile < MapSize());
-	SB(_m[tile].extra, 0, 2, type);
+	SB(_m[tile].m6, 0, 2, type);
 }
 
 /**
@@ -117,6 +117,6 @@
 static inline TropicZone GetTropicZone(TileIndex tile)
 {
 	assert(tile < MapSize());
-	return (TropicZone)GB(_m[tile].extra, 0, 2);
+	return (TropicZone)GB(_m[tile].m6, 0, 2);
 }
 #endif /* TILE_H */