Skip to content
Snippets Groups Projects
Commit f1d44434 authored by Robert Reif's avatar Robert Reif Committed by Alexandre Julliard
Browse files

Change SetCooperativeLevel FIXME to WARN.

parent fa38d542
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment