(svn r10379) -Codechange: silence a compiler warning (which was right) about a variable too little for what's been asked to do
--- 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
};
/**