From 8739a7b7d0d069130abd291bf4a23d30d3559da9 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 23 Oct 2014 17:13:44 +0000 Subject: (svn r27037) -Fix [FS#6150] (r26878): m6 was moved from Tile To TileExtended, but it wasn't properly removed from Tile (patch by Juanjo) --- src/clear_map.h | 2 +- src/map_type.h | 1 - src/misc_gui.cpp | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/clear_map.h b/src/clear_map.h index bd48c079a..76b1e82d0 100644 --- a/src/clear_map.h +++ b/src/clear_map.h @@ -267,7 +267,7 @@ static inline void MakeClear(TileIndex t, ClearGround g, uint density) _m[t].m3 = 0; _m[t].m4 = 0 << 5 | 0 << 2; SetClearGroundDensity(t, g, density); // Sets m5 - _m[t].m6 = 0; + _me[t].m6 = 0; _me[t].m7 = 0; } diff --git a/src/map_type.h b/src/map_type.h index 327f6d28f..9ac1c2b09 100644 --- a/src/map_type.h +++ b/src/map_type.h @@ -24,7 +24,6 @@ struct Tile { byte m3; ///< General purpose byte m4; ///< General purpose byte m5; ///< General purpose - byte m6; ///< General purpose }; /** diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index 49e375d65..1ed7444bc 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -130,7 +130,7 @@ public: DEBUG(misc, LANDINFOD_LEVEL, "m3 = %#x", _m[tile].m3); DEBUG(misc, LANDINFOD_LEVEL, "m4 = %#x", _m[tile].m4); DEBUG(misc, LANDINFOD_LEVEL, "m5 = %#x", _m[tile].m5); - DEBUG(misc, LANDINFOD_LEVEL, "m6 = %#x", _m[tile].m6); + DEBUG(misc, LANDINFOD_LEVEL, "m6 = %#x", _me[tile].m6); DEBUG(misc, LANDINFOD_LEVEL, "m7 = %#x", _me[tile].m7); #undef LANDINFOD_LEVEL } -- cgit v1.2.3-54-g00ecf