diff options
author | rubidium <rubidium@openttd.org> | 2007-09-26 14:21:23 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-09-26 14:21:23 +0000 |
commit | 82851876f2950507de685e9eb1d1a89b77722c8f (patch) | |
tree | 1b9eaecb77c639eb732aff2d737fba22bd274afe | |
parent | d041e06070aa5acabb2edd2d2f09d2d5c49ca203 (diff) | |
download | openttd-82851876f2950507de685e9eb1d1a89b77722c8f.tar.xz |
(svn r11170) -Fix (r11152): a variable's type was too small for the data that is going to put into it when NewIndustries are finally activated. For now it just removes a warning and doesn't really fix anything.
-rw-r--r-- | src/industry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry.h b/src/industry.h index bf60975a7..f3f0ca2ca 100644 --- a/src/industry.h +++ b/src/industry.h @@ -9,7 +9,7 @@ #include "helpers.hpp" #include "newgrf_storage.h" -typedef byte IndustryGfx; +typedef uint16 IndustryGfx; typedef uint8 IndustryType; enum { |