From fd74347241a38df2a9054f1de4fb258be6b03634 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 10 Sep 2009 12:13:24 -0700 Subject: [PATCH] openal32: Downgrade two FIXMEs to WARNs, since they test app-specified parameters. --- dlls/openal32/openal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/openal32/openal.c b/dlls/openal32/openal.c index e4da15baf2..792a87018e 100644 --- a/dlls/openal32/openal.c +++ b/dlls/openal32/openal.c @@ -175,7 +175,7 @@ ALCboolean CDECL wine_alcMakeContextCurrent(ALCcontext *context) EnterCriticalSection(&openal_cs); 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) { @@ -252,7 +252,7 @@ ALvoid CDECL wine_alcDestroyContext(ALCcontext *context) 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); LeaveCriticalSection(&openal_cs); return; -- 2.32.0.93.g670b81a890