Skip to content

Commit

Permalink
Don't throw AL_INVALID_ENUM for alSourcefv(s, AL_DIRECTION, ...).
Browse files Browse the repository at this point in the history
We do this for alSource3f(), too.
  • Loading branch information
icculus committed May 19, 2012
1 parent 6087d09 commit 6a0a4b7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions osx/alSource.c
Expand Up @@ -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;
Expand Down

0 comments on commit 6a0a4b7

Please sign in to comment.