aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/qal.h
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-12-01 20:53:28 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-12-01 20:53:28 +0000
commit83e8a543db55e77ce8519bb93debd546065826c1 (patch)
tree276d7337b68620598f736e42252c14a141d8273f /code/client/qal.h
parent7dbeecaccbc4897dd81113aa00448eec8916c8fa (diff)
downloadioquake3-aero-83e8a543db55e77ce8519bb93debd546065826c1.tar.gz
ioquake3-aero-83e8a543db55e77ce8519bb93debd546065826c1.zip
* Updated AL headers
* Added a Makefile option USE_LOCAL_HEADERS which can be disabled to use system headers if desired git-svn-id: svn://svn.icculus.org/quake3/trunk@402 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/qal.h')
-rw-r--r--code/client/qal.h6
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;