summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-08-22 00:59:46 +0000
committerbelugas <belugas@openttd.org>2007-08-22 00:59:46 +0000
commit339579e22ae63c9a67fc025cf0204f7ff1197b16 (patch)
tree1fc35dcf663ed54287475fa7674f655b081a0231
parentdd61fd374fd8d803bc1a9f4241495f2ff8b32e8b (diff)
downloadopenttd-339579e22ae63c9a67fc025cf0204f7ff1197b16.tar.xz
(svn r10962) -Codechange: protect yourself against an illicit substitution
-rw-r--r--src/industry_cmd.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index ce9e15ae8..07a3996f2 100644
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -274,9 +274,11 @@ static void DrawTile_Industry(TileInfo *ti)
} else {
/* No sprite group (or no valid one) found, meaning no graphics associated.
* Use the substitute one instead */
- gfx = indts->grf_prop.subst_id;
- /* And point the industrytile spec accordingly */
- indts = GetIndustryTileSpec(indts->grf_prop.subst_id);
+ if (indts->grf_prop.subst_id != INVALID_INDUSTRYTILE) {
+ gfx = indts->grf_prop.subst_id;
+ /* And point the industrytile spec accordingly */
+ indts = GetIndustryTileSpec(gfx);
+ }
}
}