Corrected #include directives of openal headers for MSVC.

This commit is contained in:
Thilo Schulz 2006-05-13 12:18:43 +00:00
parent 60293f49ee
commit 27df5fca31

View file

@ -37,8 +37,14 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "../AL/al.h"
#include "../AL/alc.h"
#else
#include <AL/al.h>
#include <AL/alc.h>
#ifdef _MSC_VER
// MSVC users must install the OpenAL SDK which doesn't use the AL/*.h scheme.
#include <al.h>
#include <alc.h>
#else
#include <AL/al.h>
#include <AL/alc.h>
#endif
#endif
#if USE_OPENAL_DLOPEN