summaryrefslogtreecommitdiffstats
path: root/src/sound/oalsound/alsound.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/oalsound/alsound.h')
-rw-r--r--src/sound/oalsound/alsound.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/sound/oalsound/alsound.h b/src/sound/oalsound/alsound.h
index 7aeec90..4651e04 100644
--- a/src/sound/oalsound/alsound.h
+++ b/src/sound/oalsound/alsound.h
@@ -22,7 +22,7 @@
#include <map>
#include <string>
-#include <AL/alut.h>
+#include <AL/al.h>
#include "common/iman.h"
#include "common/logger.h"
@@ -87,8 +87,10 @@ class ALSound : public CSoundInterface
bool m3D;
bool mMute;
float mAudioVolume;
- ALCdevice* audioDevice;
- ALCcontext* audioContext;
+ float mMusicVolume;
+ ALCdevice* mDevice;
+ ALCcontext* mContext;
std::map<Sound, Buffer*> mSounds;
std::map<int, Channel*> mChannels;
+ Channel *mCurrentMusic;
};