Fixed typo

This commit is contained in:
Andrew Murray 2016-08-25 21:43:31 +10:00 committed by GitHub
parent 9bcb5e455a
commit e0612ab14f

View File

@ -323,7 +323,7 @@ void
ImagingPackBGRa(UINT8* out, const UINT8* in, int pixels) ImagingPackBGRa(UINT8* out, const UINT8* in, int pixels)
{ {
int i; int i;
/* BGRa, reversed bytes with premultiplied alplha */ /* BGRa, reversed bytes with premultiplied alpha */
for (i = 0; i < pixels; i++) { for (i = 0; i < pixels; i++) {
int alpha = out[3] = in[A]; int alpha = out[3] = in[A];
int tmp; int tmp;