mirror of
https://github.com/reactos/wine.git
synced 2025-02-09 13:43:16 +00:00
openal32: Downgrade two FIXMEs to WARNs, since they test app-specified parameters.
This commit is contained in:
parent
19bc84c86d
commit
fd74347241
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user