aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/scene.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-04-07 08:29:27 -0400
committerPaul Gilbert2014-04-07 08:29:27 -0400
commit66b7419f30eb4fb0f9df899eea664f529cfb84fd (patch)
treed8a948aaf6bd7a4e46a1454f415f1d05e751468c /engines/mads/scene.cpp
parent1c50c69ba69d255e3ba9ed5a88ea0985417b9357 (diff)
downloadscummvm-rg350-66b7419f30eb4fb0f9df899eea664f529cfb84fd.tar.gz
scummvm-rg350-66b7419f30eb4fb0f9df899eea664f529cfb84fd.tar.bz2
scummvm-rg350-66b7419f30eb4fb0f9df899eea664f529cfb84fd.zip
MADS: Remove stubbed methods that were undeed mouse handler calls
Diffstat (limited to 'engines/mads/scene.cpp')
-rw-r--r--engines/mads/scene.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/mads/scene.cpp b/engines/mads/scene.cpp
index d297cb79ec..f5d1ce66f7 100644
--- a/engines/mads/scene.cpp
+++ b/engines/mads/scene.cpp
@@ -358,8 +358,7 @@ void Scene::doFrame() {
_kernelMessages.update();
}
- _userInterface._uiSlots.draw(_vm->_game->_fx == 0,
- _vm->_game->_fx != 0);
+ _userInterface._uiSlots.draw(!_vm->_game->_fx, _vm->_game->_fx);
// Write any text needed by the interface
if (_vm->_game->_fx)
@@ -395,7 +394,7 @@ void Scene::doFrame() {
}
}
-void Scene::drawElements(ScreenTransition transitionType, bool surfaceFlag) {
+void Scene::drawElements(ScreenTransition transitionType, bool surfaceFlag) {
// Draw any sprites
_spriteSlots.drawBackground();
@@ -433,7 +432,6 @@ void Scene::drawElements(ScreenTransition transitionType, bool surfaceFlag) {
_dirtyAreas.copyToScreen(_vm->_screen._offset);
}
- warning("TODO: sub_115A2");
_spriteSlots.cleanUp();
_textDisplay.cleanUp();
}