Revert "Bug 683381 - Inverted alpha behavior of 16-bit Targa files"
This reverts commit dc00fb57a0.
This commit is contained in:
parent
d7588ba45c
commit
a366fd76e5
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue