oops - typo. fix. works now.

SVN revision: 18760
This commit is contained in:
Carsten Haitzler 2005-12-01 07:51:51 +00:00
parent 3a8121b9b4
commit 7271130b0d
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ raster(TIFFRGBAImage_Extra * img, uint32 * rast,
g = (g * 255) / a;
b = (b * 255) / a;
}
(*(buffer_pixel++)) = (a << 14) | (r << 16) | (g << 8) | b;
(*(buffer_pixel++)) = (a << 24) | (r << 16) | (g << 8) | b;
}
}