summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-12-24 22:33:06 +0000
committersmatz <smatz@openttd.org>2008-12-24 22:33:06 +0000
commit24ffb8bbbacb0b77f7264ee87eb8e9ef0abaaa26 (patch)
treed36aab629a53f77beb0d9632a6c6993493573b28
parent808d746bf3d090dad82db787ba6cd66158389726 (diff)
downloadopenttd-24ffb8bbbacb0b77f7264ee87eb8e9ef0abaaa26.tar.xz
(svn r14738) -Fix (r13576): GCF_STATIC belongs to GRFConfig::flags, not GRFConfig::status
-rw-r--r--src/newgrf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index e99915b57..703b3f817 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -4549,7 +4549,7 @@ static void ParamSet(byte *buf, size_t len)
/* Read another GRF File's parameter */
const GRFFile *file = GetFileByGRFID(data);
GRFConfig *c = GetGRFConfig(data);
- if (c != NULL && HasBit(c->status, GCF_STATIC) && !HasBit(_cur_grfconfig->status, GCF_STATIC) && _networking) {
+ if (c != NULL && HasBit(c->flags, GCF_STATIC) && !HasBit(_cur_grfconfig->flags, GCF_STATIC) && _networking) {
/* Disable the read GRF if it is a static NewGRF. */
DisableStaticNewGRFInfluencingNonStaticNewGRFs(c);
src1 = 0;