Displaying 1 result from an estimated 1 matches for "mc_close".
Did you mean:
smc_close
2009 Mar 17
0
Re: Games freeze with CD music
...8.aspx. To summarize the relevant parts:
> Fix Name
>
> IgnoreMCISTOP
> Symptom:
>
> The cursor freezes momentarily during background music changes.
> Fix Description:
>
> Modifies the mciSendCommand function to ignore the MCI_STOP command, issued in response to the MC_CLOSE command. On Windows 95 and Windows 98, the MCI_STOP command has a relatively fast response time, but on Windows 2000 and Windows XP Professional, it can take several seconds.
A quick tour around the git repository shows that MCI_SendCommand is implemented near line 1525 of dlls/winmm/mci.c. Wou...