summaryrefslogtreecommitdiff
path: root/src/industry.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-07 09:20:04 +0000
committerrubidium <rubidium@openttd.org>2007-06-07 09:20:04 +0000
commitb0421273f2209907f27859065ad48a6a110b16ac (patch)
tree755e73a788de073ba2fa4c8838469d27817afa11 /src/industry.h
parent740eb9d89a20b33f49b712e5e69d18d6b1d12841 (diff)
downloadopenttd-b0421273f2209907f27859065ad48a6a110b16ac.tar.xz
(svn r10054) -Codechange: make the industries cost modifier look more like the original one, so it's much easier to support industries that use this original format.
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 ff5e563b0..9d2491614 100644
--- a/src/industry.h
+++ b/src/industry.h
@@ -116,7 +116,7 @@ struct GRFFileProps {
struct IndustrySpec {
const IndustryTileTable *const *table;///< List of the tiles composing the industry
byte num_table; ///< Number of elements in the table
- byte cost_multiplier; ///< Base cost multiplier. Watch out for this one, << 5 VS << 8
+ uint16 cost_multiplier; ///< Base cost multiplier.
IndustryType conflicting[3]; ///< Industries this industry cannot be close to
byte check_proc; ///< Index to a procedure to check for conflicting circumstances
CargoID produced_cargo[2];