Browse Source

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

feature/2015
Christian Kroll 13 years ago
parent
commit
fd0c811993
  1. 3
      animations/fpmath_patterns.c

3
animations/fpmath_patterns.c

@ -73,7 +73,8 @@ static void fpmath_pattern(double const t_start,
{ {
for (unsigned char col = LINEBYTES; col--;) 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];
} }
} }
} }

Loading…
Cancel
Save