summaryrefslogtreecommitdiff
path: root/src/economy_type.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-10-30 17:51:07 +0000
committeralberth <alberth@openttd.org>2010-10-30 17:51:07 +0000
commit7e48d85104549cbb3604aa7eb262b922dbc3f640 (patch)
tree0afba23f2fce7664320853c8deaaf293b8363e16 /src/economy_type.h
parentca8d55ebcd368998aac4a46f8697a5c4585df66d (diff)
downloadopenttd-7e48d85104549cbb3604aa7eb262b922dbc3f640.tar.xz
(svn r21060) -Doc: Improved wording of comments (mostly by __ln__)
Diffstat (limited to 'src/economy_type.h')
-rw-r--r--src/economy_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/economy_type.h b/src/economy_type.h
index 1b79ade5c..d648c9b09 100644
--- a/src/economy_type.h
+++ b/src/economy_type.h
@@ -175,7 +175,7 @@ enum PriceCategory {
struct PriceBaseSpec {
Money start_price; ///< Default value at game start, before adding multipliers.
PriceCategory category; ///< Price is affected by certain difficulty settings.
- uint grf_feature; ///< GRF Feature, that decides whether price multipliers apply locally or globally. GSF_END if none.
+ uint grf_feature; ///< GRF Feature that decides whether price multipliers apply locally or globally, #GSF_END if none.
Price fallback_price; ///< Fallback price multiplier for new prices but old grfs.
};
@@ -187,7 +187,7 @@ static const int LOAN_INTERVAL = 10000;
* This allows for 32 bit base prices (21 are currently needed).
* Considering the sign bit and 16 fractional bits, there are 15 bits left.
* 170 years of 4% inflation result in a inflation of about 822, so 10 bits are actually enough.
- * Note, that NewGRF multipliers share the 16 fractional bits.
+ * Note that NewGRF multipliers share the 16 fractional bits.
* @see MAX_PRICE_MODIFIER
*/
static const uint64 MAX_INFLATION = (1ull << (63 - 32)) - 1;