From e00cf92f47837d26d5b0fffb0668c5c717b3bacc Mon Sep 17 00:00:00 2001 From: smatz Date: Tue, 13 Jan 2009 22:58:03 +0000 Subject: (svn r15077) -Codechange: enumify DAYS_IN_YEAR and DAYS_IN_LEAP_YEAR -Change: when computing daily running cost, divide by 365 (instead of 364). Since r12134, the rounding errors don't need this correction anymore --- src/ai/ai_core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ai/ai_core.cpp') diff --git a/src/ai/ai_core.cpp b/src/ai/ai_core.cpp index 3c5843ab6..ffb2ad04b 100644 --- a/src/ai/ai_core.cpp +++ b/src/ai/ai_core.cpp @@ -235,7 +235,7 @@ void CcAI(bool success, TileIndex tile, uint32 p1, uint32 p2) } /* Currently no AI can be started, check again in a year. */ - return 365; + return DAYS_IN_YEAR; } /* static */ char *AI::GetConsoleList(char *p, const char *last) -- cgit v1.2.3-54-g00ecf