summaryrefslogtreecommitdiff
path: root/src/ai/ai_gui.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-04-19 15:14:23 +0000
committeryexo <yexo@openttd.org>2009-04-19 15:14:23 +0000
commita91ff2d5e8b0a65da160b93f2aa293d3c54c2ae3 (patch)
tree9b72fe67cc6fc9267cfb13a40999747e5552175c /src/ai/ai_gui.cpp
parentef909252265088d0a3d0949f37d34ddb853a18c7 (diff)
downloadopenttd-a91ff2d5e8b0a65da160b93f2aa293d3c54c2ae3.tar.xz
(svn r16093) -Feature [FS#2808]: Add GetURL() as possible function to info.nut. If AIs implement it, that url is shown when the AI crashes and also in the AI selection window.
Diffstat (limited to 'src/ai/ai_gui.cpp')
-rw-r--r--src/ai/ai_gui.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp
index b534d89cd..90e7b6394 100644
--- a/src/ai/ai_gui.cpp
+++ b/src/ai/ai_gui.cpp
@@ -101,6 +101,11 @@ struct AIListWindow : public Window {
SetDParam(0, selected_info->GetVersion());
DrawString(4, this->widget[AIL_WIDGET_INFO_BG].right - 4, y, STR_AI_VERSION, TC_BLACK);
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);
+ y += 13;
+ }
SetDParamStr(0, selected_info->GetDescription());
DrawStringMultiLine(4, this->width - 8, y, this->widget[AIL_WIDGET_INFO_BG].bottom, STR_JUST_RAW_STRING);
}