(svn r17037) -Fix (r17036): 'Polygonal Capabilities' are a core feature of windows.

This commit is contained in:
frosch
2009-08-02 13:56:14 +00:00
parent a6cbf0d419
commit 7f49d3b45c
3 changed files with 54 additions and 54 deletions

View File

@@ -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
};
/**