aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/sound/sound.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-12 12:35:41 -0500
committerPaul Gilbert2016-03-12 12:35:41 -0500
commitc269c770ac27cbc845c06dfec8c7ac99d4fe657d (patch)
tree42116363a655eacab4dee0e7d0b129dd2b7b1f7b /engines/titanic/sound/sound.cpp
parent60e137c65121bd284b200d97cc930c4d1e15114c (diff)
downloadscummvm-rg350-c269c770ac27cbc845c06dfec8c7ac99d4fe657d.tar.gz
scummvm-rg350-c269c770ac27cbc845c06dfec8c7ac99d4fe657d.tar.bz2
scummvm-rg350-c269c770ac27cbc845c06dfec8c7ac99d4fe657d.zip
TITANIC: Implemented sound manager loading
Diffstat (limited to 'engines/titanic/sound/sound.cpp')
-rw-r--r--engines/titanic/sound/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/sound/sound.cpp b/engines/titanic/sound/sound.cpp
index cea377eef7..35c1c708a6 100644
--- a/engines/titanic/sound/sound.cpp
+++ b/engines/titanic/sound/sound.cpp
@@ -28,11 +28,11 @@ CSound::CSound(CGameManager *owner) : _gameManager(owner) {
}
void CSound::save(SimpleFile *file) const {
-
+ _soundManager.save(file);
}
void CSound::load(SimpleFile *file) {
-
+ _soundManager.load(file);
}
} // End of namespace Titanic z