mirror of https://git.ffmpeg.org/ffmpeg.git
Set ScummVM DXA palette opaque.
This commit is contained in:
parent
dcbd18c615
commit
1567243e8f
|
@ -209,7 +209,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
|
|||
r = *buf++;
|
||||
g = *buf++;
|
||||
b = *buf++;
|
||||
c->pal[i] = (r << 16) | (g << 8) | b;
|
||||
c->pal[i] = 0xFF << 24 | r << 16 | g << 8 | b;
|
||||
}
|
||||
pc = 1;
|
||||
buf_size -= 768+4;
|
||||
|
|
Loading…
Reference in New Issue