Change SetCooperativeLevel FIXME to WARN.

This commit is contained in:
Robert Reif 2005-02-25 16:50:57 +00:00 committed by Alexandre Julliard
parent fa38d5429e
commit f1d4443435
1 changed files with 2 additions and 2 deletions

View File

@ -614,8 +614,8 @@ static HRESULT WINAPI IDirectSoundImpl_SetCooperativeLevel(
TRACE("(%p,%08lx,%s)\n",This,(DWORD)hwnd,dumpCooperativeLevel(level));
if (level==DSSCL_PRIORITY || level==DSSCL_EXCLUSIVE) {
FIXME("level=%s not fully supported\n",
level==DSSCL_PRIORITY ? "DSSCL_PRIORITY" : "DSSCL_EXCLUSIVE");
WARN("level=%s not fully supported\n",
level==DSSCL_PRIORITY ? "DSSCL_PRIORITY" : "DSSCL_EXCLUSIVE");
}
This->priolevel = level;
return DS_OK;