Files @ r11578:ecd0c4fe5dec
Branch filter:

Location: cpp/openttd-patchpack/source/src/ai/api/ai_townlist.cpp

rubidium
(svn r15953) -Fix [FS#2783]: left - right != width causing strings to be truncated too early
/* $Id$ */

/** @file ai_townlist.cpp Implementation of AITownList and friends. */

#include "ai_townlist.hpp"
#include "../../town.h"

AITownList::AITownList()
{
	Town *t;
	FOR_ALL_TOWNS(t) {
		this->AddItem(t->index);
	}
}