summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Martin Hansen <nielsm@indvikleren.dk>2018-07-28 23:46:09 +0200
committerNiels Martin Hansen <nielsm@indvikleren.dk>2018-07-29 17:12:56 +0200
commit962757759627fd6933c3b03321bdb8ae0d5c5e6d (patch)
treee268833779eb4dbfdcce56364c65c2ad89e9c2aa
parent64dac65e20550f5fd11092b55de5b119286bbaa0 (diff)
downloadopenttd-962757759627fd6933c3b03321bdb8ae0d5c5e6d.tar.xz
Fix: HouseSpec::watched_cargoes not 64 bit
Looks like HouseSpec::watched_cargoes was missed in the conversion to 64 cargo types.
-rw-r--r--src/house.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/house.h b/src/house.h
index ddc2a448c..94ef62ad5 100644
--- a/src/house.h
+++ b/src/house.h
@@ -120,7 +120,7 @@ struct HouseSpec {
AnimationInfo animation; ///< information about the animation.
byte processing_time; ///< Periodic refresh multiplier
byte minimum_life; ///< The minimum number of years this house will survive before the town rebuilds it
- uint32 watched_cargoes; ///< Cargo types watched for acceptance.
+ CargoTypes watched_cargoes; ///< Cargo types watched for acceptance.
Money GetRemovalCost() const;