diff options
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/qal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/code/client/qal.h b/code/client/qal.h index a84639a..b9eb2fd 100644 --- a/code/client/qal.h +++ b/code/client/qal.h @@ -32,8 +32,14 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #define AL_NO_PROTOTYPES #define ALC_NO_PROTOTYPES #endif + +#if USE_LOCAL_HEADERS #include "../AL/al.h" #include "../AL/alc.h" +#else +#include <AL/al.h> +#include <AL/alc.h> +#endif #if USE_OPENAL_DLOPEN extern LPALENABLE qalEnable; |