Skip to content

Commit

Permalink
ACCESS: Prevent scenes being briefly shown before fading in
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Dec 6, 2015
1 parent e9e099b commit 7dfc16a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions engines/access/screen.cpp
Expand Up @@ -89,6 +89,9 @@ void Screen::setPanel(int num) {
}

void Screen::updateScreen() {
if (_vm->_startup > 0)
return;

// Merge the dirty rects
mergeDirtyRects();

Expand Down

0 comments on commit 7dfc16a

Please sign in to comment.