From 6cf2aad16550db18ae5f82720ead2fbb51cb253a Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 9 Jul 2007 13:59:07 +0000 Subject: (svn r10486) -Fix: do not draw foundations when the "should I draw foundations" callbacks says to do so. --- src/newgrf_industrytiles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/newgrf_industrytiles.cpp') diff --git a/src/newgrf_industrytiles.cpp b/src/newgrf_industrytiles.cpp index 5bce8b12d..a3f07242c 100644 --- a/src/newgrf_industrytiles.cpp +++ b/src/newgrf_industrytiles.cpp @@ -207,7 +207,7 @@ bool DrawNewIndustryTile(TileInfo *ti, Industry *i, IndustryGfx gfx, const Indus if (HASBIT(inds->callback_flags, CBM_INDT_DRAW_FOUNDATIONS)) { /* Called to determine the type (if any) of foundation to draw for industry tile */ uint32 callback_res = GetIndustryTileCallback(CBID_INDUSTRY_DRAW_FOUNDATIONS, 0, 0, gfx, i, ti->tile); - draw_old_one = callback_res == 0 || callback_res == CALLBACK_FAILED; + draw_old_one = callback_res != 0; } if (draw_old_one) DrawFoundation(ti, ti->tileh); -- cgit v1.2.3-54-g00ecf