Make fbFetch_b8g8r8() actually write the read value to the buffer

This commit is contained in:
Soren Sandmann Pedersen 2007-05-16 17:42:04 -04:00
parent 0fcd17c918
commit 546465ee6a

View File

@ -180,6 +180,7 @@ fbFetch_b8g8r8 (const FbBits *bits, int x, int width, CARD32 *buffer, miIndexedP
b |= (READ(pixel++) << 8);
b |= (READ(pixel++));
#endif
WRITE(buffer++, b);
}
}