fixed: bits in higher planes weren't always distributed to lower ones

This commit is contained in:
Christian Kroll 2012-02-19 03:18:21 +00:00
parent 1d67907475
commit fd0c811993
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,8 @@ static void fpmath_pattern(double const t_start,
{
for (unsigned char col = LINEBYTES; col--;)
{
BUFFER[p][y][col] = nChunk[p][col] | nChunk[p + 1][col];
nChunk[p][col] |= nChunk[p + 1][col];
BUFFER[p][y][col] = nChunk[p][col];
}
}
}