Commit 9000e7f2 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Fixed returned type upon open.

parent f53d7b3c
......@@ -48,7 +48,7 @@ static DWORD ANIM_drvOpen(LPSTR str, LPMCI_OPEN_DRIVER_PARMSA modp)
wma->wDevID = modp->wDeviceID;
mciSetDriverData(wma->wDevID, (DWORD)wma);
modp->wCustomCommandTable = MCI_NO_COMMAND_TABLE;
modp->wType = MCI_DEVTYPE_SEQUENCER;
modp->wType = MCI_DEVTYPE_DIGITAL_VIDEO;
return modp->wDeviceID;
}
......
......@@ -45,7 +45,7 @@ static DWORD AVI_drvOpen(LPSTR str, LPMCI_OPEN_DRIVER_PARMSA modp)
wma->wDevID = modp->wDeviceID;
mciSetDriverData(wma->wDevID, (DWORD)wma);
modp->wCustomCommandTable = MCI_NO_COMMAND_TABLE;
modp->wType = MCI_DEVTYPE_SEQUENCER;
modp->wType = MCI_DEVTYPE_DIGITAL_VIDEO;
return modp->wDeviceID;
}
......
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