diff options
author | Paul Gilbert | 2014-10-14 21:37:00 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-10-14 21:37:00 -0400 |
commit | ea9599b763e0e8aef55282d621828ebfc7b1a9f6 (patch) | |
tree | 6c99050d86629ac12e78f8ba9bb3ce55198d6f67 /engines/mads/nebular | |
parent | b5fb32de5ea2a4f3dd4133c423d666d00f37744f (diff) | |
download | scummvm-rg350-ea9599b763e0e8aef55282d621828ebfc7b1a9f6.tar.gz scummvm-rg350-ea9599b763e0e8aef55282d621828ebfc7b1a9f6.tar.bz2 scummvm-rg350-ea9599b763e0e8aef55282d621828ebfc7b1a9f6.zip |
MADS: Implement subtitles for animation cutscenes
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r-- | engines/mads/nebular/menu_nebular.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/mads/nebular/menu_nebular.cpp b/engines/mads/nebular/menu_nebular.cpp index 0d7b11cf4b..64c91d5f1b 100644 --- a/engines/mads/nebular/menu_nebular.cpp +++ b/engines/mads/nebular/menu_nebular.cpp @@ -55,6 +55,8 @@ void MenuView::show() { while (!_breakFlag && !_vm->shouldQuit()) { if (_redrawFlag) { + scene._kernelMessages.update(); + _vm->_game->_scene.drawElements(_vm->_game->_fx, _vm->_game->_fx); _redrawFlag = false; } |