diff options
Diffstat (limited to 'town_cmd.c')
-rw-r--r-- | town_cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/town_cmd.c b/town_cmd.c index e96494a83..e0c616864 100644 --- a/town_cmd.c +++ b/town_cmd.c @@ -85,7 +85,7 @@ static void DrawTile_Town(TileInfo *ti) /* Add a house on top of the ground? */ if ((image = dcts->sprite_2) != 0) { - if (!(_display_opt & DO_TRANS_BUILDINGS)) + if (_display_opt & DO_TRANS_BUILDINGS) image = (image & 0x3FFF) | 0x3224000; AddSortableSpriteToDraw(image, @@ -96,7 +96,7 @@ static void DrawTile_Town(TileInfo *ti) dcts->dz, z); - if (!(_display_opt & DO_TRANS_BUILDINGS)) + if (_display_opt & DO_TRANS_BUILDINGS) return; } |