- backend sync with GZDoom.

This commit is contained in:
Christoph Oelckers 2020-05-31 21:25:52 +02:00
parent bd0c8acd46
commit c26b6cdf59
19 changed files with 44 additions and 44 deletions

View file

@ -71,7 +71,7 @@ FBitmap AnimTexture::GetBgraBitmap(const PalEntry* remap, int* trans)
{
int p = i * 4;
int index = spix[i];
dpix[p + 0] = Palette[index*3+2];
dpix[p + 0] = Palette[index * 3 + 2];
dpix[p + 1] = Palette[index * 3 + 1];
dpix[p + 2] = Palette[index * 3];
dpix[p + 3] = 255;