Skip to content

Commit

Permalink
ACCESS: Fix scene fade ins
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Dec 13, 2014
1 parent 6f39c07 commit 8ef3d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/access/room.cpp
Expand Up @@ -69,12 +69,12 @@ void Room::doRoom() {
}

reloadFlag = false;
_vm->_startup = 0;
_vm->_startup = 8;
_function = 0;

while (!_vm->shouldQuit()) {
_vm->_images.clear();
if (_vm->_startup != -1 && --_vm->_startup != 0) {
if (_vm->_startup != -1 && --_vm->_startup == 0) {
_vm->_events->showCursor();
_vm->_screen->fadeIn();
}
Expand Down

0 comments on commit 8ef3d55

Please sign in to comment.