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 | 74556769419976aa048b4a0f465fc4e603656678 (patch) | |
tree | 1b9eaecb77c639eb732aff2d737fba22bd274afe | |
parent | 2239809bdcd5cc65d5d7e4c28abb72a74952f14c (diff) | |
download | openttd-74556769419976aa048b4a0f465fc4e603656678.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 { |