diff options
Diffstat (limited to 'engines/titanic/core')
-rw-r--r-- | engines/titanic/core/game_object.cpp | 4 | ||||
-rw-r--r-- | engines/titanic/core/game_object.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/core/game_object.cpp b/engines/titanic/core/game_object.cpp index ae517a2689..ef7a8c2bca 100644 --- a/engines/titanic/core/game_object.cpp +++ b/engines/titanic/core/game_object.cpp @@ -1374,14 +1374,14 @@ void CGameObject::setToggleColor(byte r, byte g, byte b) { _toggleB = b; } -void CGameObject::movieSetAudioTiming(bool flag) { +void CGameObject::movieSetPlaying(bool flag) { if (!_surface && !_resource.empty()) { loadResource(_resource); _resource.clear(); } if (_surface && _surface->_movie) - _surface->_movie->_hasAudioTiming = flag; + _surface->_movie->setPlaying(flag); } void CGameObject::movieEvent(int frameNumber) { diff --git a/engines/titanic/core/game_object.h b/engines/titanic/core/game_object.h index f79c9e1d1e..b592806977 100644 --- a/engines/titanic/core/game_object.h +++ b/engines/titanic/core/game_object.h @@ -653,9 +653,9 @@ public: void stopMovie(); /** - * Overrides whether the object's movie has audio timing + * Overrides whether the object's movie is playing or paused */ - void movieSetAudioTiming(bool flag); + void movieSetPlaying(bool flag); /** * Get the current movie frame |