From 740df9b42aac87472353512d2eda796bdd6d3aa3 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 28 Nov 2014 14:22:11 -0500 Subject: ACCESS: Further tweaks to timer skipping --- engines/access/events.cpp | 2 +- engines/access/scripts.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') 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 -- cgit v1.2.3