*include stdio.h in a couple files for MinGW GCC 4.4.0
[supertux.git] / src / audio / sound_manager.hpp
index 12f1944..9794e6d 100644 (file)
 #include <vector>
 #include <map>
 
-#ifndef MACOSX
-#include <AL/alc.h>
-#include <AL/al.h>
-#else
-#include <OpenAL/alc.h>
-#include <OpenAL/al.h>
-#endif
+#include <alc.h>
+#include <al.h>
 
 #include "math/vector.hpp"
 
@@ -75,7 +70,7 @@ public:
   bool is_sound_enabled() { return sound_enabled; }
 
   bool is_audio_enabled() {
-                       return device != 0 && context != 0;
+    return device != 0 && context != 0;
   }
 
   void update();