(svn r1469) -Fix: missed one in last commit

This commit is contained in:
truelight 2005-01-10 19:14:05 +00:00
parent 52de6766c7
commit 2c6e2a68b7

View File

@ -743,6 +743,9 @@ static void FixStation(OldStation *o, int num)
static void FixDepot(Depot *n, OldDepot *o, int num)
{
do {
if (o->xy == 0)
continue;
n->town_index = REMAP_TOWN_IDX(o->town);
n->xy = o->xy;
} while (n++,o++,--num);