aboutsummaryrefslogtreecommitdiff
path: root/engines/m4/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/m4/sound.cpp')
-rw-r--r--engines/m4/sound.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/m4/sound.cpp b/engines/m4/sound.cpp
index 37fe36cf2b..6c8c9edb82 100644
--- a/engines/m4/sound.cpp
+++ b/engines/m4/sound.cpp
@@ -99,6 +99,10 @@ void Sound::playSound(const char *soundName, int volume, bool loop, int channel)
_mixer->playInputStream(Audio::Mixer::kSFXSoundType, &handle->handle, stream, -1, volume);
}
+void Sound::playSound(int soundNum) {
+ warning("TODO: playSound(%d)", soundNum);
+}
+
void Sound::pauseSound() {
for (int i = 0; i < SOUND_HANDLES; i++) {
if (_handles[i].type == kEffectHandle)