summaryrefslogtreecommitdiffstats
path: root/src/sound/oalsound/alsound.h
diff options
context:
space:
mode:
authorkrzys-h <krzys_h@interia.pl>2013-04-13 11:44:16 +0200
committerkrzys-h <krzys_h@interia.pl>2013-04-13 11:44:16 +0200
commitebffda717b1b633baba7a313267505614f89f26e (patch)
tree58450559d64938e2d98af4bdf746ffd7fb91e995 /src/sound/oalsound/alsound.h
parent69e52e5f24d3e02dde20bda5ee322697bafc92c8 (diff)
downloadcolobot-ebffda717b1b633baba7a313267505614f89f26e.tar.gz
colobot-ebffda717b1b633baba7a313267505614f89f26e.tar.bz2
colobot-ebffda717b1b633baba7a313267505614f89f26e.zip
Implemented AudioChange (partially)
There is some issues due to #173 Issue #172
Diffstat (limited to 'src/sound/oalsound/alsound.h')
-rw-r--r--src/sound/oalsound/alsound.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound/oalsound/alsound.h b/src/sound/oalsound/alsound.h
index 5701997..7e0503a 100644
--- a/src/sound/oalsound/alsound.h
+++ b/src/sound/oalsound/alsound.h
@@ -66,6 +66,7 @@ class ALSound : public CSoundInterface
bool MuteAll(bool bMute);
bool PlayMusic(int rank, bool bRepeat);
+ bool PlayMusic(std::string filename, bool bRepeat);
bool RestartMusic();
void SuspendMusic();
void StopMusic();
@@ -91,7 +92,6 @@ class ALSound : public CSoundInterface
ALCcontext* mContext;
std::map<Sound, Buffer*> mSounds;
std::map<int, Channel*> mChannels;
- std::deque<Buffer*> mMusicCache;
Channel *mCurrentMusic;
Math::Vector mEye;
Math::Vector mLookat;