From fd0c811993019b8c9830465b7338aa61dc683f78 Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Sun, 19 Feb 2012 03:18:21 +0000 Subject: [PATCH] fixed: bits in higher planes weren't always distributed to lower ones --- animations/fpmath_patterns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/animations/fpmath_patterns.c b/animations/fpmath_patterns.c index 0e03371..4f00a69 100644 --- a/animations/fpmath_patterns.c +++ b/animations/fpmath_patterns.c @@ -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]; } } }