summaryrefslogtreecommitdiff
path: root/newgrf_spritegroup.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-05-04 19:42:50 +0000
committerpeter1138 <peter1138@openttd.org>2006-05-04 19:42:50 +0000
commit2280caaef366a1326d56d469b0a2c6ba7dabf313 (patch)
treeed5ad7cff3089ca4f24c9592cbc902583e24f903 /newgrf_spritegroup.c
parentc22e79d5515b158f5e15bc78e73565c1d4aafd12 (diff)
downloadopenttd-2280caaef366a1326d56d469b0a2c6ba7dabf313.tar.xz
(svn r4741) - NewGRF: use the correct variable type for the random bit mask
Diffstat (limited to 'newgrf_spritegroup.c')
-rw-r--r--newgrf_spritegroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newgrf_spritegroup.c b/newgrf_spritegroup.c
index 7766aa452..fd27d3aff 100644
--- a/newgrf_spritegroup.c
+++ b/newgrf_spritegroup.c
@@ -188,7 +188,7 @@ static inline const SpriteGroup *ResolveVariable(const SpriteGroup *group, Resol
static inline const SpriteGroup *ResolveRandom(const SpriteGroup *group, ResolverObject *object)
{
- byte mask;
+ uint32 mask;
byte index;
object->scope = group->g.random.var_scope;