From 2e9c21cd84f47c51ebe8a847f2e4c359a106c751 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 31 Aug 2016 23:12:53 -0400 Subject: TITANIC: Improvements to view change animations --- engines/titanic/support/movie.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'engines/titanic/support/movie.cpp') diff --git a/engines/titanic/support/movie.cpp b/engines/titanic/support/movie.cpp index cfdcecbf42..647b24dda4 100644 --- a/engines/titanic/support/movie.cpp +++ b/engines/titanic/support/movie.cpp @@ -133,8 +133,13 @@ void OSMovie::playCutscene(const Rect &drawRect, uint startFrame, uint endFrame) drawRect.top + (heightLess ? CLIP_HEIGHT_REDUCED : CLIP_HEIGHT) ); + CGameState &gameState = g_vm->_window->_gameManager->_gameState; + gameState.setMode(GSMODE_CLIP); + _aviSurface.setFrame(startFrame); _aviSurface.playCutscene(r, startFrame, endFrame); + + gameState.setMode(GSMODE_INTERACTIVE); } void OSMovie::stop() { -- cgit v1.2.3