(svn r4741) - NewGRF: use the correct variable type for the random bit mask
authorpeter1138
Thu, 04 May 2006 19:42:50 +0000
changeset 3753 2509d0dc21a7
parent 3752 7c28dc5a1698
child 3754 4c8cbaaa0bbe
(svn r4741) - NewGRF: use the correct variable type for the random bit mask
newgrf_spritegroup.c
--- a/newgrf_spritegroup.c	Thu May 04 19:27:41 2006 +0000
+++ b/newgrf_spritegroup.c	Thu May 04 19:42:50 2006 +0000
@@ -188,7 +188,7 @@
 
 static inline const SpriteGroup *ResolveRandom(const SpriteGroup *group, ResolverObject *object)
 {
-	byte mask;
+	uint32 mask;
 	byte index;
 
 	object->scope = group->g.random.var_scope;