aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/sound
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-13 21:44:22 -0400
committerPaul Gilbert2016-08-13 21:44:22 -0400
commit14cdfa3f58455c818691eb94d3a3de5b0dda8696 (patch)
treea0101a6344567b40f7073a74b5e599967dc7be82 /engines/titanic/sound
parentaf85a2a3fac21b3da3eb70a2eb216457b2b097bb (diff)
downloadscummvm-rg350-14cdfa3f58455c818691eb94d3a3de5b0dda8696.tar.gz
scummvm-rg350-14cdfa3f58455c818691eb94d3a3de5b0dda8696.tar.bz2
scummvm-rg350-14cdfa3f58455c818691eb94d3a3de5b0dda8696.zip
TITANIC: Implemented CMaitreD class
Diffstat (limited to 'engines/titanic/sound')
-rw-r--r--engines/titanic/sound/music_handler.cpp5
-rw-r--r--engines/titanic/sound/music_handler.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/engines/titanic/sound/music_handler.cpp b/engines/titanic/sound/music_handler.cpp
index 037c340f0b..07c3994334 100644
--- a/engines/titanic/sound/music_handler.cpp
+++ b/engines/titanic/sound/music_handler.cpp
@@ -77,4 +77,9 @@ void CMusicHandler::stop() {
}
}
+bool CMusicHandler::checkSound(int index) const {
+ // TODO
+ return false;
+}
+
} // End of namespace Titanic
diff --git a/engines/titanic/sound/music_handler.h b/engines/titanic/sound/music_handler.h
index 17ffea965a..6792844cb5 100644
--- a/engines/titanic/sound/music_handler.h
+++ b/engines/titanic/sound/music_handler.h
@@ -63,6 +63,8 @@ public:
* Stop playing the music
*/
void stop();
+
+ bool checkSound(int index) const;
};
} // End of namespace Titanic