(svn r4741) - NewGRF: use the correct variable type for the random bit mask
authorpeter1138
Thu, 04 May 2006 19:42:50 +0000
changeset 3753 aa15896bc569
parent 3752 a7cdd7c0c928
child 3754 04356ae401b4
(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;