Make OpenAL header inclusion more portable
authorTim Goya <tuxdev103@gmail.com>
Mon, 10 Dec 2007 18:42:47 +0000 (18:42 +0000)
committerTim Goya <tuxdev103@gmail.com>
Mon, 10 Dec 2007 18:42:47 +0000 (18:42 +0000)
SVN-Revision: 5191

src/audio/openal_sound_source.hpp
src/audio/sound_manager.hpp

index f70dd0f..88f6454 100644 (file)
@@ -19,7 +19,7 @@
 #ifndef __OPENAL_SOUND_SOURCE_H__
 #define __OPENAL_SOUND_SOURCE_H__
 
-#include <AL/al.h>
+#include <al.h>
 #include "math/vector.hpp"
 #include "sound_source.hpp"
 
index 356c198..921b859 100644 (file)
@@ -23,8 +23,8 @@
 #include <vector>
 #include <map>
 
-#include <AL/alc.h>
-#include <AL/al.h>
+#include <alc.h>
+#include <al.h>
 #include "math/vector.hpp"
 
 class SoundFile;