From 6a0a4b7e774f524e993109830ee970a932d8f64a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 18 May 2012 20:51:42 -0400 Subject: [PATCH] Don't throw AL_INVALID_ENUM for alSourcefv(s, AL_DIRECTION, ...). We do this for alSource3f(), too. --- osx/alSource.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/osx/alSource.c b/osx/alSource.c index 5a288e9..f9916fb 100644 --- a/osx/alSource.c +++ b/osx/alSource.c @@ -384,6 +384,9 @@ ALAPI ALvoid ALAPIENTRY alSourcefv (ALuint source, ALenum pname, ALfloat *values } // if break; + case AL_DIRECTION: + break; // !!! FIXME: not supported right now. + default: __alSetError(AL_INVALID_ENUM); break;