winmm: SND_ALIAS and SND_ALIAS_ID overlap so when checking for SND_ALIAS_ID make sure it is SND_ALIAS_ID and not SND_ALIAS.

This commit is contained in:
Aric Stewart 2009-04-02 08:32:59 -05:00 committed by Alexandre Julliard
parent c08b0a0a9d
commit 7e8e9c41e9
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ static DWORD WINAPI proc_PlaySound(LPVOID arg)
}
else if (wps->fdwSound & SND_ALIAS)
{
if (wps->fdwSound & SND_ALIAS_ID)
if ((wps->fdwSound & SND_ALIAS_ID) == SND_ALIAS_ID)
{
static const WCHAR wszSystemAsterisk[] = {'S','y','s','t','e','m','A','s','t','e','r','i','s','k',0};
static const WCHAR wszSystemDefault[] = {'S','y','s','t','e','m','D','e','f','a','u','l','t',0};