aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/sound/background_sound_maker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/sound/background_sound_maker.cpp')
-rw-r--r--engines/titanic/sound/background_sound_maker.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/titanic/sound/background_sound_maker.cpp b/engines/titanic/sound/background_sound_maker.cpp
index 0abab8906b..58dde02518 100644
--- a/engines/titanic/sound/background_sound_maker.cpp
+++ b/engines/titanic/sound/background_sound_maker.cpp
@@ -24,6 +24,10 @@
namespace Titanic {
+BEGIN_MESSAGE_MAP(CBackgroundSoundMaker, CGameObject)
+ ON_MESSAGE(FrameMsg)
+END_MESSAGE_MAP()
+
void CBackgroundSoundMaker::save(SimpleFile *file, int indent) {
file->writeNumberLine(1, indent);
file->writeNumberLine(_value, indent);
@@ -36,4 +40,8 @@ void CBackgroundSoundMaker::load(SimpleFile *file) {
CGameObject::load(file);
}
+bool CBackgroundSoundMaker::FrameMsg(CFrameMsg *msg) {
+ return true;
+}
+
} // End of namespace Titanic