mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 05:00:37 +00:00
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
Block a user