diff --git a/animations/bitmapscroller.c b/animations/bitmapscroller.c index 03cf810..6dd39ac 100644 --- a/animations/bitmapscroller.c +++ b/animations/bitmapscroller.c @@ -58,7 +58,7 @@ static unsigned char bitmap_getAlignedChunk(bitmap_t const *const pBitmap, unsigned char const x_8 = x / 8; // we have to go through every bit plane - for (unsigned char i = pBitmap->nBitPlanes; i--;) + for (unsigned char i = 0; i < pBitmap->nBitPlanes; ++i) { // generate chunk unsigned char nPlaneChunk;