diff options
author | peter1138 <peter1138@openttd.org> | 2008-02-14 11:58:36 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2008-02-14 11:58:36 +0000 |
commit | 859d768bb794e73abd24a5eb788e15c8062c14cd (patch) | |
tree | 1af83e1dad73cd3488cf0e42785f99d85495dcab | |
parent | bb81de3c4c9b9ed631dd5a1ef8b780e87ac6a4f8 (diff) | |
download | openttd-859d768bb794e73abd24a5eb788e15c8062c14cd.tar.xz |
(svn r12139) -Fix (r12124): The global variable value should be returned, not the variable.
-rw-r--r-- | src/newgrf_spritegroup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_spritegroup.cpp b/src/newgrf_spritegroup.cpp index a5e7077e8..376078cad 100644 --- a/src/newgrf_spritegroup.cpp +++ b/src/newgrf_spritegroup.cpp @@ -84,7 +84,7 @@ static inline uint32 GetVariable(const ResolverObject *object, byte variable, by { /* First handle variables common with Action7/9/D */ uint32 value; - if (GetGlobalVariable(variable, &value)) return variable; + if (GetGlobalVariable(variable, &value)) return value; /* Non-common variable */ switch (variable) { |