MADS: Remove stubbed methods that were undeed mouse handler calls

This commit is contained in:
Paul Gilbert 2014-04-07 08:29:27 -04:00
parent 1c50c69ba6
commit 66b7419f30
2 changed files with 2 additions and 7 deletions

View file

@ -358,8 +358,7 @@ void Scene::doFrame() {
_kernelMessages.update(); _kernelMessages.update();
} }
_userInterface._uiSlots.draw(_vm->_game->_fx == 0, _userInterface._uiSlots.draw(!_vm->_game->_fx, _vm->_game->_fx);
_vm->_game->_fx != 0);
// Write any text needed by the interface // Write any text needed by the interface
if (_vm->_game->_fx) if (_vm->_game->_fx)
@ -433,7 +432,6 @@ void Scene::drawElements(ScreenTransition transitionType, bool surfaceFlag) {
_dirtyAreas.copyToScreen(_vm->_screen._offset); _dirtyAreas.copyToScreen(_vm->_screen._offset);
} }
warning("TODO: sub_115A2");
_spriteSlots.cleanUp(); _spriteSlots.cleanUp();
_textDisplay.cleanUp(); _textDisplay.cleanUp();
} }

View file

@ -149,7 +149,6 @@ void UISlots::draw(bool updateFlag, bool delFlag) {
_vm->_screen.setPointer(&userInterface); _vm->_screen.setPointer(&userInterface);
userInterface.setBounds(Common::Rect(0, scene._interfaceY, userInterface.setBounds(Common::Rect(0, scene._interfaceY,
MADS_SCREEN_WIDTH - 1, userInterface.h + scene._interfaceY - 1)); MADS_SCREEN_WIDTH - 1, userInterface.h + scene._interfaceY - 1));
warning("TODO: sub_111C8 / sub_1146C");
for (uint idx = 0; idx < size(); ++idx) { for (uint idx = 0; idx < size(); ++idx) {
DirtyArea &dirtyArea = userInterface._dirtyAreas[idx]; DirtyArea &dirtyArea = userInterface._dirtyAreas[idx];
@ -162,8 +161,6 @@ void UISlots::draw(bool updateFlag, bool delFlag) {
_vm->_screen.copyRectToScreen(r); _vm->_screen.copyRectToScreen(r);
} }
} }
warning("TODO: sub 115A2 / sub111D3");
} }
// Post-processing to remove slots no longer needed // Post-processing to remove slots no longer needed