diff options
author | truebrain <truebrain@openttd.org> | 2011-12-01 12:03:34 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-12-01 12:03:34 +0000 |
commit | cc12942d70fa2a672c59e848c196c6647f8f1129 (patch) | |
tree | 3543911ce7080ad03897907e5e192d7697bc954e /src/company_cmd.cpp | |
parent | 0c2bbdde5c0f9577cff72af5b34c10777c6bebd0 (diff) | |
download | openttd-cc12942d70fa2a672c59e848c196c6647f8f1129.tar.xz |
(svn r23384) -Remove: no longer allow a binary to be without AI support; the parts some compilers failed at, are integrated in other parts of the code now too
Diffstat (limited to 'src/company_cmd.cpp')
-rw-r--r-- | src/company_cmd.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp index 2ebd99d66..692431e6e 100644 --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -572,7 +572,6 @@ void StartupCompanies() _next_competitor_start = 0; } -#ifdef ENABLE_AI /** Start a new competitor company if possible. */ static void MaybeStartNewCompany() { @@ -594,7 +593,6 @@ static void MaybeStartNewCompany() DoCommandP(0, 1 | INVALID_COMPANY << 16, 0, CMD_COMPANY_CTRL); } } -#endif /* ENABLE_AI */ /** Initialize the pool of companies. */ void InitializeCompanies() @@ -693,7 +691,6 @@ void OnTick_Companies() if (c->bankrupt_asked != 0) HandleBankruptcyTakeover(c); } -#ifdef ENABLE_AI if (_next_competitor_start == 0) { _next_competitor_start = AI::GetStartNextTime() * DAY_TICKS; } @@ -701,7 +698,6 @@ void OnTick_Companies() if (AI::CanStartNew() && _game_mode != GM_MENU && --_next_competitor_start == 0) { MaybeStartNewCompany(); } -#endif /* ENABLE_AI */ _cur_company_tick_index = (_cur_company_tick_index + 1) % MAX_COMPANIES; } |