summaryrefslogtreecommitdiff
path: root/src/house.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/house.h')
-rw-r--r--src/house.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/house.h b/src/house.h
index bbe98845e..b2253c711 100644
--- a/src/house.h
+++ b/src/house.h
@@ -122,14 +122,12 @@ struct HouseSpec {
*/
Money GetRemovalCost() const;
+ static FORCEINLINE HouseSpec *Get(size_t house_id)
+ {
+ assert(house_id < HOUSE_MAX);
+ extern HouseSpec _house_specs[];
+ return &_house_specs[house_id];
+ }
};
-extern HouseSpec _house_specs[];
-
-static inline HouseSpec *GetHouseSpecs(HouseID house_id)
-{
- assert(house_id < HOUSE_MAX);
- return &_house_specs[house_id];
-}
-
#endif /* HOUSE_H */