Commit 5e0bdcc4 authored by Jeff Smith's avatar Jeff Smith Committed by Alexandre Julliard

Fixed 32 bit flag in midiOutShortMsg.

parent 8ab84e24
......@@ -1145,7 +1145,7 @@ UINT WINAPI midiOutShortMsg(HMIDIOUT hMidiOut, DWORD dwMsg)
if ((wmld = MMDRV_Get(hMidiOut, MMDRV_MIDIOUT, FALSE)) == NULL)
return MMSYSERR_INVALHANDLE;
return MMDRV_Message(wmld, MODM_DATA, dwMsg, 0L, FALSE);
return MMDRV_Message(wmld, MODM_DATA, dwMsg, 0L, 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