From d9e1de0281152f30a2df04ccad9b6cda4d34f51d Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 11 May 2009 11:13:37 +0000 Subject: [PATCH] (svn r16276) -Fix: huh, old AI? What is that? What about all the time I thought there was no AI? --- src/economy_type.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/economy_type.h b/src/economy_type.h index 0b7b581d36..7559612dc0 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 */