summaryrefslogtreecommitdiff
path: root/src/economy_type.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-08-02 13:56:14 +0000
committerfrosch <frosch@openttd.org>2009-08-02 13:56:14 +0000
commit7f49d3b45c8fbfa0ee4cbe9fc670073b4e0b279d (patch)
tree194655f8f6eccac2d0775702ae42d14d69e86016 /src/economy_type.h
parenta6cbf0d419569989d54f6df37232e9e771acafa8 (diff)
downloadopenttd-7f49d3b45c8fbfa0ee4cbe9fc670073b4e0b279d.tar.xz
(svn r17037) -Fix (r17036): 'Polygonal Capabilities' are a core feature of windows.
Diffstat (limited to 'src/economy_type.h')
-rw-r--r--src/economy_type.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/economy_type.h b/src/economy_type.h
index 48988bb46..4f32d806c 100644
--- a/src/economy_type.h
+++ b/src/economy_type.h
@@ -126,9 +126,9 @@ enum ExpensesType {
* Categories of a price bases.
*/
enum PriceCategory {
- PC_NONE, ///< No category
- PC_RUNNING, ///< Price is affected by "vehicle running cost" difficulty setting
- PC_CONSTRUCTION, ///< Price is affected by "construction cost" difficulty setting
+ PCAT_NONE, ///< Not affected by difficulty settings
+ PCAT_RUNNING, ///< Price is affected by "vehicle running cost" difficulty setting
+ PCAT_CONSTRUCTION, ///< Price is affected by "construction cost" difficulty setting
};
/**