aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/sound.h')
-rw-r--r--engines/xeen/sound.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/engines/xeen/sound.h b/engines/xeen/sound.h
index 5dd80c0e55..aba38c81b2 100644
--- a/engines/xeen/sound.h
+++ b/engines/xeen/sound.h
@@ -56,6 +56,8 @@ public:
};
class Sound : public Music {
+private:
+ Audio::Mixer *_mixer;
public:
Sound(XeenEngine *vm, Audio::Mixer *mixer);
@@ -67,8 +69,6 @@ public:
void stopMusic(int id);
- void playSong(Common::SeekableReadStream &f) {}
-
/**
* Play a given sound
*/
@@ -76,11 +76,6 @@ public:
Audio::Mixer::SoundType soundType = Audio::Mixer::kSFXSoundType);
/**
- * Play a given music
- */
- void playMusic(Common::SeekableReadStream *s, Audio::SoundHandle &soundHandle);
-
- /**
* Stop playing a sound
*/
void stopSound(Audio::SoundHandle &soundHandle);
@@ -88,8 +83,6 @@ public:
void playSample(const Common::SeekableReadStream *stream, int v2 = 1) {}
bool playSample(int v1, int v2) { return false; }
-
- void playFX(int id) {}
};
} // End of namespace Xeen