fixed bug introduced in r495

This commit is contained in:
Artem Pavlenko 2007-08-29 14:06:35 +00:00
parent beebee468b
commit 4e427f978c

View file

@ -140,9 +140,9 @@ namespace mapnik
for (int x = box.minx(); x < box.maxx(); ++x)
{
if (row_to[x-x0] & 0xff000000)
if (row_from[x-x0] & 0xff000000)
{
row_to[x-x0] = row_from[x-x0];
row_to[x] = row_from[x-x0];
}
}
}