diff options
-rw-r--r-- | engines/access/events.cpp | 2 | ||||
-rw-r--r-- | engines/access/scripts.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/access/events.cpp b/engines/access/events.cpp index 8b109ea470..87e5d10cc3 100644 --- a/engines/access/events.cpp +++ b/engines/access/events.cpp @@ -201,7 +201,7 @@ bool EventsManager::checkForNextFrameCounter() { } void EventsManager::nextFrame(bool skipTimers) { - if (skipTimers) { + if (!skipTimers) { // Update timers _vm->_animation->updateTimers(); _vm->_timers.updateTimers(); diff --git a/engines/access/scripts.cpp b/engines/access/scripts.cpp index d611b6fe26..72650f472c 100644 --- a/engines/access/scripts.cpp +++ b/engines/access/scripts.cpp @@ -213,7 +213,7 @@ void Scripts::printString(const Common::String &msg) { // Wait until the bubble display is expired while (!_vm->shouldQuit() && _vm->_timers[PRINT_TIMER]._flag) { - _vm->_events->pollEvents(true); + _vm->_events->pollEvents(); } // Restore the original screen over the text bubble |