Commit cf459ac7 authored by James Hatheway's avatar James Hatheway Committed by Alexandre Julliard

PlaySoundA should return TRUE when it stops playing sound.

parent 9ae0fe54
......@@ -505,7 +505,7 @@ BOOL WINAPI PlaySoundA(LPCSTR pszSound, HMODULE hmod, DWORD fdwSound)
return FALSE;
if (!pszSound || (fdwSound & SND_PURGE))
return FALSE; /* We stoped playing so leaving */
return TRUE; /* We stopped playing so leaving */
if (PlaySound_SearchMode != 1) PlaySound_SearchMode = 2;
if (!(fdwSound & SND_ASYNC)) {
......
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