ckid not fccType specifies the form type to search for.

This commit is contained in:
Ulrich Czekalla 2005-09-08 18:55:33 +00:00 committed by Alexandre Julliard
parent 1103e716bd
commit 613cf57872
1 changed files with 2 additions and 2 deletions

View File

@ -1173,11 +1173,11 @@ MMRESULT WINAPI mmioDescend(HMMIO hmmio, LPMMCKINFO lpck,
/* find_riff and find_list look for 'fccType' */
if (uFlags & MMIO_FINDLIST) {
srchCkId = FOURCC_LIST;
srchType = lpck->fccType;
srchType = lpck->ckid;
}
if (uFlags & MMIO_FINDRIFF) {
srchCkId = FOURCC_RIFF;
srchType = lpck->fccType;
srchType = lpck->ckid;
}
if (uFlags & (MMIO_FINDCHUNK|MMIO_FINDLIST|MMIO_FINDRIFF)) {