summaryrefslogtreecommitdiff
path: root/src/sound_openal.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2012-03-24 23:16:09 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-03-24 23:16:09 +0200
commit77621568fd25c418f74518761fcdbd05f8c214d1 (patch)
treef28699a18b52829f2e7b30ecf650fd792a3148dd /src/sound_openal.cpp
parent601d1936c9ab4787d43f55d67900ed7c46fd3452 (diff)
downloadminetest-77621568fd25c418f74518761fcdbd05f8c214d1.tar.gz
minetest-77621568fd25c418f74518761fcdbd05f8c214d1.tar.bz2
minetest-77621568fd25c418f74518761fcdbd05f8c214d1.zip
Fix build on MinGW (as compared to Linux)
Diffstat (limited to 'src/sound_openal.cpp')
-rw-r--r--src/sound_openal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound_openal.cpp b/src/sound_openal.cpp
index 26ad6fa4c..6f9ff3bd6 100644
--- a/src/sound_openal.cpp
+++ b/src/sound_openal.cpp
@@ -23,10 +23,10 @@ with this program; ifnot, write to the Free Software Foundation, Inc.,
#include "sound_openal.h"
-#if defined(_MSC_VER)
+#if defined(_WIN32)
#include <al.h>
#include <alc.h>
- #include <alext.h>
+ //#include <alext.h>
#elif defined(__APPLE__)
#include <OpenAL/al.h>
#include <OpenAL/alc.h>