summaryrefslogtreecommitdiff
path: root/src/ai/ai_gui.cpp
diff options
context:
space:
mode:
authorYexo <yexo@openttd.org>2009-01-21 00:19:21 +0000
committerYexo <yexo@openttd.org>2009-01-21 00:19:21 +0000
commitc3b7917da1517f12c111b390c83dd3bebd0ad22e (patch)
tree3ab74a1d7c964b273b1887e5511bf570c36f0c7e /src/ai/ai_gui.cpp
parenta4d3c760930603f75dad93d25383610d3fe29662 (diff)
downloadopenttd-c3b7917da1517f12c111b390c83dd3bebd0ad22e.tar.xz
(svn r15185) -Fix (r15175): It was impossible to select AIs that had a different instance name then their name.
Diffstat (limited to 'src/ai/ai_gui.cpp')
-rw-r--r--src/ai/ai_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp
index 988b92f37..01fd4699c 100644
--- a/src/ai/ai_gui.cpp
+++ b/src/ai/ai_gui.cpp
@@ -113,7 +113,7 @@ struct AIListWindow : public Window {
} else {
AIInfoList::const_iterator it = this->ai_info_list->begin();
for (int i = 0; i < this->selected; i++) it++;
- AIConfig::GetConfig(slot)->ChangeAI((*it).second->GetName(), (*it).second->GetVersion());
+ AIConfig::GetConfig(slot)->ChangeAI((*it).second->GetInstanceName(), (*it).second->GetVersion());
}
InvalidateWindow(WC_GAME_OPTIONS, 0);
}