diff options
author | Chris Robinson <[email protected]> | 2010-03-16 17:35:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-16 17:35:51 -0700 |
commit | f37cfc486d9f7ff84d21395f9135819f0b24f274 (patch) | |
tree | 64666af29c8814b8b8c53e4bf1d8a39cc562cb2a /OpenAL32/Include/alError.h | |
parent | a337a59fb8c07b608944bff843b765656c56da64 (diff) |
Pass the context to alSetError
Diffstat (limited to 'OpenAL32/Include/alError.h')
-rw-r--r-- | OpenAL32/Include/alError.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alError.h b/OpenAL32/Include/alError.h index 5cee8db8..7976e50f 100644 --- a/OpenAL32/Include/alError.h +++ b/OpenAL32/Include/alError.h @@ -2,12 +2,13 @@ #define _AL_ERROR_H_ #include "AL/al.h" +#include "AL/alc.h" #ifdef __cplusplus extern "C" { #endif -ALvoid alSetError(ALenum errorCode); +ALvoid alSetError(ALCcontext *Context, ALenum errorCode); #ifdef __cplusplus } |