From 8ef3d551511f2b22c36e2cdbcb50f104eb64871a Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 9 Nov 2014 11:19:10 -0500 Subject: ACCESS: Fix scene fade ins --- engines/access/room.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/access') diff --git a/engines/access/room.cpp b/engines/access/room.cpp index 02bb3b53c7..e3ac84c231 100644 --- a/engines/access/room.cpp +++ b/engines/access/room.cpp @@ -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(); } -- cgit v1.2.3