diff options
author | rubidium <rubidium@openttd.org> | 2009-04-26 15:26:19 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-04-26 15:26:19 +0000 |
commit | 7dd677ced22abb688b2ed69f99faed211f3554b1 (patch) | |
tree | df4ab2d279bb9ba905f4c04a0e80fa48cbeaa15c /src/ai | |
parent | 3301afa5c3b2fe2bf24ef7ab9333df8a88334fb9 (diff) | |
download | openttd-7dd677ced22abb688b2ed69f99faed211f3554b1.tar.xz |
(svn r16162) -Codechange: remove needless TC_ colours from DrawString when they are part of strings and add some colours to a few strings.
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 727e7ab45..d7fd0e306 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -96,18 +96,18 @@ struct AIListWindow : public Window { if (selected_info != NULL) { int y = this->widget[AIL_WIDGET_INFO_BG].top + 6; SetDParamStr(0, selected_info->GetAuthor()); - DrawString(4, this->widget[AIL_WIDGET_INFO_BG].right - 4, y, STR_AI_AUTHOR, TC_BLACK); + DrawString(4, this->widget[AIL_WIDGET_INFO_BG].right - 4, y, STR_AI_AUTHOR); y += 13; SetDParam(0, selected_info->GetVersion()); - DrawString(4, this->widget[AIL_WIDGET_INFO_BG].right - 4, y, STR_AI_VERSION, TC_BLACK); + DrawString(4, this->widget[AIL_WIDGET_INFO_BG].right - 4, y, STR_AI_VERSION); y += 13; if (selected_info->GetURL() != NULL) { SetDParamStr(0, selected_info->GetURL()); - DrawString(4, this->widget[AIL_WIDGET_INFO_BG].right - 4, y, STR_AI_URL, TC_BLACK); + DrawString(4, this->widget[AIL_WIDGET_INFO_BG].right - 4, y, STR_AI_URL); y += 13; } SetDParamStr(0, selected_info->GetDescription()); - DrawStringMultiLine(4, this->width - 8, y, this->widget[AIL_WIDGET_INFO_BG].bottom, STR_JUST_RAW_STRING); + DrawStringMultiLine(4, this->width - 8, y, this->widget[AIL_WIDGET_INFO_BG].bottom, STR_JUST_RAW_STRING, TC_BLACK); } } |