diff options
author | rubidium <rubidium@openttd.org> | 2007-09-24 20:56:33 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-09-24 20:56:33 +0000 |
commit | e61f197dbaff79ff43244ab99d70009143a66e39 (patch) | |
tree | 6ac237f23b74ee08219fcbf2dffa5a80f529d1ec | |
parent | db0e01bd7b604ebbae143a4a6f0975140edac443 (diff) | |
download | openttd-e61f197dbaff79ff43244ab99d70009143a66e39.tar.xz |
(svn r11158) -Codechange: reduce the amount of Random calls needed when we do not have NewGRF industries that actually need the random bits.
-rw-r--r-- | src/newgrf_industrytiles.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/newgrf_industrytiles.cpp b/src/newgrf_industrytiles.cpp index 5c9d3dbc7..521b545c7 100644 --- a/src/newgrf_industrytiles.cpp +++ b/src/newgrf_industrytiles.cpp @@ -358,8 +358,11 @@ bool StartStopIndustryTileAnimation(const Industry *ind, IndustryAnimationTrigge uint32 random = Random(); BEGIN_TILE_LOOP(tile, ind->width, ind->height, ind->xy) if (IsTileType(tile, MP_INDUSTRY) && GetIndustryIndex(tile) == ind->index) { - ret &= StartStopIndustryTileAnimation(tile, iat, random); - SB(random, 0, 16, Random()); + if (StartStopIndustryTileAnimation(tile, iat, random)) { + SB(random, 0, 16, Random()); + } else { + ret = false; + } } END_TILE_LOOP(tile, ind->width, ind->height, ind->xy) |