summaryrefslogtreecommitdiff
path: root/src/industry.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-06-28 19:03:14 +0000
committerbelugas <belugas@openttd.org>2007-06-28 19:03:14 +0000
commit42f0593b82912f81dd1e92afb0223b78dc0eb363 (patch)
treeb7efa20635c9d47d6f6b3dec74090d56012cf7ca /src/industry.h
parent1761ff341c93e857676cc852b21c8362208037b3 (diff)
downloadopenttd-42f0593b82912f81dd1e92afb0223b78dc0eb363.tar.xz
(svn r10379) -Codechange: silence a compiler warning (which was right) about a variable too little for what's been asked to do
Diffstat (limited to 'src/industry.h')
-rw-r--r--src/industry.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry.h b/src/industry.h
index 9ac25993e..0ec4e1491 100644
--- a/src/industry.h
+++ b/src/industry.h
@@ -107,7 +107,7 @@ struct GRFFileProps {
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
};
/**