diff options
Diffstat (limited to 'engines/titanic/sound')
-rw-r--r-- | engines/titanic/sound/sound.cpp | 4 | ||||
-rw-r--r-- | engines/titanic/sound/sound.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/sound/sound.cpp b/engines/titanic/sound/sound.cpp index 54c14508cf..14dba2e152 100644 --- a/engines/titanic/sound/sound.cpp +++ b/engines/titanic/sound/sound.cpp @@ -43,8 +43,8 @@ void CSound::preLoad() { _gameManager->_musicRoom.preLoad(); } -void CSound::viewChanged(CViewItem *newView, bool isNewRoom) { - warning("CSound::viewChanged"); +void CSound::preEnterView(CViewItem *newView, bool isNewRoom) { + warning("CSound::preEnterView"); } } // End of namespace Titanic z diff --git a/engines/titanic/sound/sound.h b/engines/titanic/sound/sound.h index 0bfd3f29b1..4c0dab5dd5 100644 --- a/engines/titanic/sound/sound.h +++ b/engines/titanic/sound/sound.h @@ -71,7 +71,7 @@ public: /** * Called when the view has been changed */ - void viewChanged(CViewItem *newView, bool isNewRoom); + void preEnterView(CViewItem *newView, bool isNewRoom); }; } // End of namespace Titanic |