diff options
Diffstat (limited to 'engines/parallaction/dialogue.cpp')
-rw-r--r-- | engines/parallaction/dialogue.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp index 4f112bc800..5455f9fad2 100644 --- a/engines/parallaction/dialogue.cpp +++ b/engines/parallaction/dialogue.cpp @@ -643,25 +643,16 @@ int16 getHoverAnswer(int16 x, int16 y, Question *q) { } -// backups background mask and path -// -// -void enterDialogue() { - _vm->_gfx->backupBackgroundMask(Gfx::kMask0); - _vm->_gfx->backupBackgroundPath(Gfx::kPath0); +void enterDialogue() { return; } -// restores background mask and path // rebuilds inventory // void exitDialogue() { - _vm->_gfx->restoreBackgroundMask(Gfx::kMask0); - _vm->_gfx->restoreBackgroundPath(Gfx::kPath0); - refreshInventory(_vm->_characterName); return; |