Skip to content

Commit

Permalink
ACCESS: Further tweaks to timer skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Dec 13, 2014
1 parent eeb9d63 commit 740df9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion engines/access/events.cpp
Expand Up @@ -201,7 +201,7 @@ bool EventsManager::checkForNextFrameCounter() {
}

void EventsManager::nextFrame(bool skipTimers) {
if (skipTimers) {
if (!skipTimers) {
// Update timers
_vm->_animation->updateTimers();
_vm->_timers.updateTimers();
Expand Down
2 changes: 1 addition & 1 deletion engines/access/scripts.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 740df9b

Please sign in to comment.