forked from mirror/OpenTTD
(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
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user