diff options
Diffstat (limited to 'src/tile_map.h')
-rw-r--r-- | src/tile_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile_map.h b/src/tile_map.h index b6c715e8a..4bd584539 100644 --- a/src/tile_map.h +++ b/src/tile_map.h @@ -134,7 +134,7 @@ static inline void SetTileType(TileIndex tile, TileType type) /* VOID tiles (and no others) are exactly allowed at the lower left and right * edges of the map. If _settings_game.construction.freeform_edges is true, * the upper edges of the map are also VOID tiles. */ - assert(IsInnerTile(tile) == (type != MP_VOID)); + assert(IsInnerTile(tile) == (type != MP_VOID)); // was commented in <underground> SB(_m[tile].type, 4, 4, type); } |