(svn r10379) -Codechange: silence a compiler warning (which was right) about a variable too little for what's been asked to do
authorbelugas
Thu, 28 Jun 2007 19:03:14 +0000
changeset 7603 b79d8772d069
parent 7602 182651491d7d
child 7604 bdf34754bb16
(svn r10379) -Codechange: silence a compiler warning (which was right) about a variable too little for what's been asked to do
src/industry.h
--- a/src/industry.h	Thu Jun 28 19:02:59 2007 +0000
+++ b/src/industry.h	Thu Jun 28 19:03:14 2007 +0000
@@ -107,7 +107,7 @@
 	uint16 local_id;                      ///< id defined by the grf file for this industry
 	struct SpriteGroup *spritegroup;      ///< pointer to the different sprites of the industry
 	const struct GRFFile *grffile;        ///< grf file that introduced this industry
-	uint8 override;                       ///< id of the entity been replaced by
+	uint16 override;                      ///< id of the entity been replaced by
 };
 
 /**