Commit ed56845a authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Fixed animation loading for RLE encoding.

parent 07b143ed
...@@ -424,7 +424,8 @@ static BOOL ANIMATE_GetAviCodec(ANIMATE_INFO *infoPtr) ...@@ -424,7 +424,8 @@ static BOOL ANIMATE_GetAviCodec(ANIMATE_INFO *infoPtr)
DWORD outSize; DWORD outSize;
/* check uncompressed AVI */ /* check uncompressed AVI */
if (infoPtr->ash.fccHandler == mmioFOURCC('D', 'I', 'B', ' ')) { if (infoPtr->ash.fccHandler == mmioFOURCC('D', 'I', 'B', ' ') ||
infoPtr->ash.fccHandler == mmioFOURCC('R', 'L', 'E', ' ')) {
infoPtr->hic = 0; infoPtr->hic = 0;
return TRUE; return TRUE;
} }
......
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