Browse Source

reverted optimization (10 bytes) which caused colors 1 and 2 to swap

feature/2015
Christian Kroll 13 years ago
parent
commit
84512b4740
  1. 2
      animations/bitmapscroller.c

2
animations/bitmapscroller.c

@ -58,7 +58,7 @@ static unsigned char bitmap_getAlignedChunk(bitmap_t const *const pBitmap,
unsigned char const x_8 = x / 8; unsigned char const x_8 = x / 8;
// we have to go through every bit plane // 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 // generate chunk
unsigned char nPlaneChunk; unsigned char nPlaneChunk;

Loading…
Cancel
Save