Commit 9f9a1f42 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Set QuickDraw palette opaque.

parent 3bf54ab5
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment