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

Set Westwood Studios VQA palette opaque.

parent 90f75f98
No related branches found
No related tags found
No related merge requests found
...@@ -402,7 +402,7 @@ static void vqa_decode_chunk(VqaContext *s) ...@@ -402,7 +402,7 @@ static void vqa_decode_chunk(VqaContext *s)
r = s->buf[cpl0_chunk++] * 4; r = s->buf[cpl0_chunk++] * 4;
g = s->buf[cpl0_chunk++] * 4; g = s->buf[cpl0_chunk++] * 4;
b = s->buf[cpl0_chunk++] * 4; b = s->buf[cpl0_chunk++] * 4;
s->palette[i] = (r << 16) | (g << 8) | (b); s->palette[i] = 0xFF << 24 | r << 16 | g << 8 | b;
} }
} }
......
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