Skip to content
Snippets Groups Projects
Commit 9f9a1f42 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos
Browse files

Set QuickDraw palette opaque.

parent 3bf54ab5
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ static int decode_frame(AVCodecContext *avctx,
buf++;
b = *buf++;
buf++;
pal[idx] = (r << 16) | (g << 8) | b;
pal[idx] = 0xFF << 24 | r << 16 | g << 8 | b;
}
p->palette_has_changed = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment