diff options
author | rubidium <rubidium@openttd.org> | 2009-04-26 14:52:56 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-04-26 14:52:56 +0000 |
commit | 53887e07bb8a6f815f48daffc3ac106496b2e694 (patch) | |
tree | 46b1264b6cbd4a5187e9361bab01ae4418503f56 /src/ai | |
parent | c21062a728fa37bb319c38b627d56f38150328f1 (diff) | |
download | openttd-53887e07bb8a6f815f48daffc3ac106496b2e694.tar.xz |
(svn r16160) -Codechange: remove the need for explicit TC_FROMSTRING for DrawString.
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index ff0aa7919..727e7ab45 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -523,7 +523,7 @@ struct AIConfigWindow : public Window { byte max_competitors = _settings_newgame.difficulty.max_no_competitors; DrawArrowButtons(10, 18, COLOUR_YELLOW, this->clicked_button ? 1 + !!this->clicked_increase : 0, max_competitors > 0, max_competitors < MAX_COMPANIES - 1); SetDParam(0, _settings_newgame.difficulty.max_no_competitors); - DrawString(36, this->widget[AIC_WIDGET_BACKGROUND].right, 18, STR_DIFFICULTY_LEVEL_SETTING_MAXIMUM_NO_COMPETITORS, TC_FROMSTRING); + DrawString(36, this->widget[AIC_WIDGET_BACKGROUND].right, 18, STR_DIFFICULTY_LEVEL_SETTING_MAXIMUM_NO_COMPETITORS); int y = this->widget[AIC_WIDGET_LIST].top; for (int i = this->vscroll.pos; i < this->vscroll.pos + this->vscroll.cap && i < MAX_COMPANIES; i++) { |