aboutsummaryrefslogtreecommitdiff
path: root/sword1/music.h
diff options
context:
space:
mode:
Diffstat (limited to 'sword1/music.h')
-rw-r--r--sword1/music.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/sword1/music.h b/sword1/music.h
index 53873c87cc..5628cbce40 100644
--- a/sword1/music.h
+++ b/sword1/music.h
@@ -28,7 +28,9 @@
#include "sound/audiostream.h"
#include "sound/rate.h"
-class SoundMixer;
+namespace Audio {
+ class Mixer;
+}
namespace Sword1 {
@@ -84,7 +86,7 @@ public:
class Music : public AudioStream {
public:
- Music(SoundMixer *pMixer);
+ Music(Audio::Mixer *pMixer);
~Music();
void startMusic(int32 tuneId, int32 loopFlag);
void fadeDown();
@@ -104,7 +106,7 @@ private:
st_volume_t _volumeL, _volumeR;
MusicHandle _handles[2];
RateConverter *_converter[2];
- SoundMixer *_mixer;
+ Audio::Mixer *_mixer;
uint32 _sampleRate;
Common::Mutex _mutex;