diff options
author | Paul Gilbert | 2013-12-30 17:31:32 +1100 |
---|---|---|
committer | Paul Gilbert | 2013-12-30 17:31:32 +1100 |
commit | cb15e2863f397d6906cb509ee5ec00102fe38baf (patch) | |
tree | f384700cc5a0e156ddc8b3937213cee9d4972f0c | |
parent | 60743fc8c90a9d35bde1e632ed2ae5b55fb8168d (diff) | |
download | scummvm-rg350-cb15e2863f397d6906cb509ee5ec00102fe38baf.tar.gz scummvm-rg350-cb15e2863f397d6906cb509ee5ec00102fe38baf.tar.bz2 scummvm-rg350-cb15e2863f397d6906cb509ee5ec00102fe38baf.zip |
VOYEUR: Fix to doTapePlaying to show tape image
-rw-r--r-- | engines/voyeur/voyeur_game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/voyeur/voyeur_game.cpp b/engines/voyeur/voyeur_game.cpp index 89e48afb74..2c33d3350e 100644 --- a/engines/voyeur/voyeur_game.cpp +++ b/engines/voyeur/voyeur_game.cpp @@ -573,12 +573,13 @@ void VoyeurEngine::doTapePlaying() { _graphicsManager._backColors = _bVoy->boltEntry(0xA01)._cMapResource; _graphicsManager._backgroundPage = _bVoy->boltEntry(0xA00)._picResource; PictureResource *pic = _bVoy->boltEntry(0xA02)._picResource; + VInitCycleResource *cycle = _bVoy->boltEntry(0xA05)._vInitCycleResource; (*_graphicsManager._vPort)->setupViewPort(_graphicsManager._backgroundPage); _graphicsManager.sDrawPic(pic, *_graphicsManager._vPort, Common::Point(57, 30)); + _graphicsManager._backColors->startFade(); flipPageAndWaitForFade(); - VInitCycleResource *cycle = _bVoy->boltEntry(0xA05)._vInitCycleResource; cycle->vStartCycle(); _soundManager.startVOCPlay("vcr.voc"); |