Set Sierra VMD palette opaque.

This commit is contained in:
Carl Eugen Hoyos 2011-11-12 20:22:01 +01:00
parent e9a2ffa117
commit 90f75f9804
1 changed files with 1 additions and 1 deletions

View File

@ -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) {