diff options
-rw-r--r-- | engines/hdb/sound.cpp | 5 | ||||
-rw-r--r-- | engines/hdb/sound.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp index 92840e9eb0..5f5cf86236 100644 --- a/engines/hdb/sound.cpp +++ b/engines/hdb/sound.cpp @@ -44,6 +44,11 @@ bool Sound::playVoice(int index, int actor) { return true; } +bool Sound::stopChannel(int channel) { + debug(9, "STUB: Stop Channel"); + return true; +} + void Sound::markSoundCacheFreeable() { warning("STUB: Sound::markSoundCacheFreeable() "); } diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h index c790ca910b..2fc677bb1b 100644 --- a/engines/hdb/sound.h +++ b/engines/hdb/sound.h @@ -1392,6 +1392,7 @@ public: bool playSound(int index); bool playSoundEx(int index, int channel, bool loop); bool playVoice(int index, int actor); + bool stopChannel(int channel); void markSoundCacheFreeable(); }; |