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

Alexandre Julliard julliard at winehq.org
Fri Sep 11 10:52:39 CDT 2009


Module: wine
Branch: master
Commit: fd74347241a38df2a9054f1de4fb258be6b03634
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=fd74347241a38df2a9054f1de4fb258be6b03634

Author: Chris Robinson <chris.kcat at gmail.com>
Date:   Thu Sep 10 12:13:24 2009 -0700

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

---

 dlls/openal32/openal.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/openal32/openal.c b/dlls/openal32/openal.c
index e4da15b..792a870 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;




More information about the wine-cvs mailing list