diff options
-rw-r--r-- | engines/agi/menu.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/agi/menu.cpp b/engines/agi/menu.cpp index 3e00c9a7bd..9ecf9c5977 100644 --- a/engines/agi/menu.cpp +++ b/engines/agi/menu.cpp @@ -324,9 +324,6 @@ void GfxMenu::execute() { } } - // original AGI did not do this, at least when the menu was called by scripts - _vm->inGameTimerPause(); - if (viaKeyboard) { _vm->cycleInnerLoopActive(CYCLE_INNERLOOP_MENU_VIA_KEYBOARD); } else if (viaMouse) { @@ -337,9 +334,6 @@ void GfxMenu::execute() { _vm->mainCycle(); } while (_vm->cycleInnerLoopIsActive() && !(_vm->shouldQuit() || _vm->_restartGame)); - // original AGI did not do this, at least when the menu was called by scripts - _vm->inGameTimerResume(); - if (_drawnMenuNr >= 0) { removeActiveMenu(_drawnMenuNr); } |