summaryrefslogtreecommitdiff
path: root/src/ai/ai_gui.cpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2009-01-15 18:15:12 +0000
committertruebrain <truebrain@openttd.org>2009-01-15 18:15:12 +0000
commite436f0218f1dbcc62e39889d360bf620b2056dcd (patch)
treefe14c05c0a3bd9c3c4546610ab53a830dc6bab9b /src/ai/ai_gui.cpp
parent31a586dc6f5169ee0be89c66662948a5c555c497 (diff)
downloadopenttd-e436f0218f1dbcc62e39889d360bf620b2056dcd.tar.xz
(svn r15095) -Add [NoAI]: allow AI Libraries to be in .tar files (subdir required, as with AIs
-Add [NoAI]: allow multiple versions of the same AI co-exist -Change [NoAI]: updated the whole method of AI (Library) finding and loading; it is now much more clear and transparent -Change [NoAI]: the name of the AI is now the name used by CreateInstance() -Change [NoAI]: make the AI finder a bit more clever, mostly related to version finding
Diffstat (limited to 'src/ai/ai_gui.cpp')
-rw-r--r--src/ai/ai_gui.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp
index 8272cc966..05c9e388e 100644
--- a/src/ai/ai_gui.cpp
+++ b/src/ai/ai_gui.cpp
@@ -134,7 +134,9 @@ struct AIDebugWindow : public Window {
/* Draw the AI name */
AIInfo *info = GetCompany(ai_debug_company)->ai_info;
assert(info != NULL);
- DoDrawString(info->GetName(), 7, 47, TC_BLACK);
+ char name[1024];
+ snprintf(name, sizeof(name), "%s (v%d)", info->GetName(), info->GetVersion());
+ DoDrawString(name, 7, 47, TC_BLACK);
CompanyID old_company = _current_company;
_current_company = ai_debug_company;