Changed: #872 include path are not the same for openal on mac (patch by rti)

This commit is contained in:
vl 2010-05-13 19:01:07 +02:00
parent fa7b90e27d
commit bb63259a3d

View file

@ -35,8 +35,13 @@
#include <algorithm>
#include <limits>
#ifdef NL_OS_MAC
# include <al.h>
# include <alc.h>
#else
# include <AL/al.h>
# include <AL/alc.h>
#endif
#include <nel/misc/common.h>
#include <nel/misc/debug.h>