Skip to content

Commit

Permalink
SCI32: Add some missing onFrame hooks for the debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
csnover committed May 6, 2017
1 parent 8a590e6 commit 8510529
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions engines/sci/graphics/video32.cpp
Expand Up @@ -456,6 +456,7 @@ void AVIPlayer::renderFrame() const {
}

g_system->updateScreen();
g_sci->getSciDebugger()->onFrame();
}
}

Expand Down Expand Up @@ -885,6 +886,7 @@ void VMDPlayer::renderFrame() const {
g_sci->_gfxPalette32->submit(palette);
g_sci->_gfxFrameout->updateScreenItem(*_screenItem);
g_sci->_gfxFrameout->frameOut(true);
g_sci->getSciDebugger()->onFrame();

#if SCI_VMD_BLACK_PALETTE
if (_blackPalette) {
Expand Down

0 comments on commit 8510529

Please sign in to comment.