- fixed: FBuildTexture::CopyTrueColorPixels returned incorrect transparency information

This commit is contained in:
Christoph Oelckers 2018-03-26 11:45:53 +02:00
parent 4ffa344f7d
commit f8019637cf
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ int FBuildTexture::CopyTrueColorPixels(FBitmap *bmp, int x, int y, int rotate, F
{
PalEntry *Remap = translationtables[TRANSLATION_Standard][Translation]->Palette;
bmp->CopyPixelData(x, y, RawPixels, Width, Height, Height, 1, rotate, Remap, inf);
return 0;
return -1;
}