From 5a9523bfa023f6915ec97f4e7c0055c32911f415 Mon Sep 17 00:00:00 2001 From: truebrain Date: Fri, 2 Dec 2011 23:40:32 +0000 Subject: (svn r23399) -Fix (r23362): a randomizer should return a random value, not always the first --- src/ai/ai_scanner.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/ai/ai_scanner.cpp b/src/ai/ai_scanner.cpp index f903061e4..6dfebc4ac 100644 --- a/src/ai/ai_scanner.cpp +++ b/src/ai/ai_scanner.cpp @@ -81,13 +81,15 @@ AIInfo *AIScannerInfo::SelectRandomAI() const /* Find the Nth item from the array */ ScriptInfoList::const_iterator it = this->info_single_list.begin(); - AIInfo *i = static_cast((*it).second); - while (!i->UseAsRandomAI()) it++; + +#define GetAIInfo(it) static_cast((*it).second) + while (!GetAIInfo(it)->UseAsRandomAI()) it++; for (; pos > 0; pos--) { it++; - while (!i->UseAsRandomAI()) it++; + while (!GetAIInfo(it)->UseAsRandomAI()) it++; } - return i; + return GetAIInfo(it); +#undef GetAIInfo } AIInfo *AIScannerInfo::FindInfo(const char *nameParam, int versionParam, bool force_exact_match) -- cgit v1.2.3-54-g00ecf