Commit 90f75f98 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Set Sierra VMD palette opaque.

parent e9a2ffa1
......@@ -264,7 +264,7 @@ static void vmd_decode(VmdVideoContext *s)
r = *p++ * 4;
g = *p++ * 4;
b = *p++ * 4;
palette32[i] = (r << 16) | (g << 8) | (b);
palette32[i] = 0xFF << 24 | r << 16 | g << 8 | b;
}
}
if (p < p_end) {
......
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