Commit fd743472 authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

openal32: Downgrade two FIXMEs to WARNs, since they test app-specified parameters.

parent 19bc84c8
...@@ -175,7 +175,7 @@ ALCboolean CDECL wine_alcMakeContextCurrent(ALCcontext *context) ...@@ -175,7 +175,7 @@ ALCboolean CDECL wine_alcMakeContextCurrent(ALCcontext *context)
EnterCriticalSection(&openal_cs); EnterCriticalSection(&openal_cs);
if(context && !(ctx=ValidateCtx(context))) if(context && !(ctx=ValidateCtx(context)))
FIXME("Could not find context %p in context list\n", context); WARN("Could not find context %p in context list\n", context);
if(alcMakeContextCurrent(context) == ALC_FALSE) if(alcMakeContextCurrent(context) == ALC_FALSE)
{ {
...@@ -252,7 +252,7 @@ ALvoid CDECL wine_alcDestroyContext(ALCcontext *context) ...@@ -252,7 +252,7 @@ ALvoid CDECL wine_alcDestroyContext(ALCcontext *context)
if(!(*list)) if(!(*list))
{ {
FIXME("Could not find context %p in context list\n", context); WARN("Could not find context %p in context list\n", context);
alcDestroyContext(context); alcDestroyContext(context);
LeaveCriticalSection(&openal_cs); LeaveCriticalSection(&openal_cs);
return; return;
......
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