[DSOUND] change SetCooperativeLevel FIXME to WARN

Robert Reif reif at earthlink.net
Fri Feb 25 09:21:46 CST 2005


Change SetCooperativeLevel FIXME to WARN.

This will probably never be fixed properly and I'm tired of
looking at it when running the regression tests.
-------------- next part --------------
Index: dlls/dsound/dsound.c
===================================================================
RCS file: /home/wine/wine/dlls/dsound/dsound.c,v
retrieving revision 1.29
diff -u -p -r1.29 dsound.c
--- dlls/dsound/dsound.c	11 Feb 2005 11:49:05 -0000	1.29
+++ dlls/dsound/dsound.c	25 Feb 2005 15:13:31 -0000
@@ -614,8 +614,8 @@ static HRESULT WINAPI IDirectSoundImpl_S
     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;


More information about the wine-patches mailing list