Commit 64f4fb75 authored by Don Moir's avatar Don Moir Committed by Paul B Mahol

gifdec: fix transparent background color

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent b61097fe
......@@ -202,7 +202,7 @@ static int gif_read_image(GifState *s)
s->gce_w = width; s->gce_h = height;
if (s->gce_disposal == GCE_DISPOSAL_BACKGROUND) {
if (s->background_color_index == s->transparent_color_index)
if (s->background_color_index >= 0)
s->stored_bg_color = s->trans_color;
else
s->stored_bg_color = s->bg_color;
......
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