mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: FBuildTexture::CopyTrueColorPixels returned incorrect transparency information
This commit is contained in:
parent
4ffa344f7d
commit
f8019637cf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue