changeset 7107:c3f29220717a draft

(svn r10379) -Codechange: silence a compiler warning (which was right) about a variable too little for what's been asked to do
author belugas <belugas@openttd.org>
date Thu, 28 Jun 2007 19:03:14 +0000
parents 33296909b1b1
children 6644dd55efbb
files src/industry.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/industry.h
+++ b/src/industry.h
@@ -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
 };
 
 /**