summaryrefslogtreecommitdiffstats
path: root/src/sound
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2013-11-03 13:04:57 +0100
committerPiotr Dziwinski <piotrdz@gmail.com>2013-11-03 13:04:57 +0100
commitf1c5cd5f82d33d5db5033ea28e1d24a13b2e28a2 (patch)
treeb9e7e75a2138875ffed59772a2a1c7cf82b7aaa4 /src/sound
parentec38c14ee8293b2dc7436e0c06b0c294652c84cc (diff)
parentd8e50e4eeb2dde3e0d228e2bead29d73494f8874 (diff)
downloadcolobot-f1c5cd5f82d33d5db5033ea28e1d24a13b2e28a2.tar.gz
colobot-f1c5cd5f82d33d5db5033ea28e1d24a13b2e28a2.tar.bz2
colobot-f1c5cd5f82d33d5db5033ea28e1d24a13b2e28a2.zip
Colobot Gold 0.1.1-alpha
Diffstat (limited to 'src/sound')
-rw-r--r--src/sound/oalsound/alsound.h2
-rw-r--r--src/sound/oalsound/buffer.h2
-rw-r--r--src/sound/oalsound/channel.h4
-rw-r--r--src/sound/oalsound/check.h6
4 files changed, 7 insertions, 7 deletions
diff --git a/src/sound/oalsound/alsound.h b/src/sound/oalsound/alsound.h
index ad32204..cd44ae9 100644
--- a/src/sound/oalsound/alsound.h
+++ b/src/sound/oalsound/alsound.h
@@ -32,7 +32,7 @@
#include <map>
#include <string>
-#include <AL/al.h>
+#include <al.h>
class ALSound : public CSoundInterface
diff --git a/src/sound/oalsound/buffer.h b/src/sound/oalsound/buffer.h
index d847426..e693d75 100644
--- a/src/sound/oalsound/buffer.h
+++ b/src/sound/oalsound/buffer.h
@@ -30,7 +30,7 @@
#include <vector>
#include <array>
-#include <AL/al.h>
+#include <al.h>
#include <sndfile.h>
class Buffer
diff --git a/src/sound/oalsound/channel.h b/src/sound/oalsound/channel.h
index a04b509..2930f26 100644
--- a/src/sound/oalsound/channel.h
+++ b/src/sound/oalsound/channel.h
@@ -30,8 +30,8 @@
#include <deque>
#include <cassert>
-#include <AL/al.h>
-#include <AL/alc.h>
+#include <al.h>
+#include <alc.h>
struct SoundOper
{
diff --git a/src/sound/oalsound/check.h b/src/sound/oalsound/check.h
index f677e17..b8f67c0 100644
--- a/src/sound/oalsound/check.h
+++ b/src/sound/oalsound/check.h
@@ -18,11 +18,11 @@
#pragma once
-#include <AL/al.h>
-#include <AL/alc.h>
-
#include "common/logger.h"
+#include <al.h>
+#include <alc.h>
+
static ALenum CODE = AL_NO_ERROR;
inline bool alCheck()