diff options
author | rubidium <rubidium@openttd.org> | 2009-05-11 11:13:37 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-05-11 11:13:37 +0000 |
commit | d9e1de0281152f30a2df04ccad9b6cda4d34f51d (patch) | |
tree | bbc81c52fd7a050303bf6ed0bf7c772fb2cfa803 | |
parent | 4710c3fe316216c880643038e5099066724f1254 (diff) | |
download | openttd-d9e1de0281152f30a2df04ccad9b6cda4d34f51d.tar.xz |
(svn r16276) -Fix: huh, old AI? What is that? What about all the time I thought there was no AI?
-rw-r--r-- | src/economy_type.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/economy_type.h b/src/economy_type.h index 0b7b581d3..7559612dc 100644 --- a/src/economy_type.h +++ b/src/economy_type.h @@ -130,10 +130,7 @@ enum ExpensesType { INVALID_EXPENSES = 0xFF, }; -/* The "steps" in loan size, in British Pounds! */ -enum { - LOAN_INTERVAL = 10000, - LOAN_INTERVAL_OLD_AI = 50000, -}; +/** The "steps" in loan size, in British Pounds! */ +static const int LOAN_INTERVAL = 10000; #endif /* ECONOMY_TYPE_H */ |