diff options
Diffstat (limited to 'engines/voyeur/animation.cpp')
-rw-r--r-- | engines/voyeur/animation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/voyeur/animation.cpp b/engines/voyeur/animation.cpp index 40ea92f13b..86ab7001d9 100644 --- a/engines/voyeur/animation.cpp +++ b/engines/voyeur/animation.cpp @@ -467,7 +467,7 @@ void RL2Decoder::play(VoyeurEngine *vm, int resourceOffset, PictureResource videoFrame(getVideoTrack()->getBackSurface()); int picCtr = 0; - while (!vm->shouldQuit() && !endOfVideo() && !vm->_eventsManager._mouseClicked) { + while (!vm->shouldQuit() && !endOfVideo() && !vm->_eventsManager->_mouseClicked) { if (hasDirtyPalette()) { const byte *palette = getPalette(); @@ -494,7 +494,7 @@ void RL2Decoder::play(VoyeurEngine *vm, int resourceOffset, (byte *)vm->_graphicsManager._screenSurface.getPixels()); } - vm->_eventsManager.getMouseInfo(); + vm->_eventsManager->getMouseInfo(); g_system->delayMillis(10); } } |