Revert "Bug 683381 - Inverted alpha behavior of 16-bit Targa files"

This reverts commit dc00fb57a0.
This commit is contained in:
Michael Natterer 2012-09-05 23:34:11 +02:00
parent d7588ba45c
commit a366fd76e5
1 changed files with 1 additions and 1 deletions

View File

@ -812,7 +812,7 @@ upsample (guchar *dest,
if (alpha)
{
dest[3] = (src[1] & 0x80) ? 255 : 0;
dest[3] = (src[1] & 0x80) ? 0 : 255;
dest += 4;
}
else