diff options
Diffstat (limited to 'engines/gob/game_v2.cpp')
| -rw-r--r-- | engines/gob/game_v2.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/gob/game_v2.cpp b/engines/gob/game_v2.cpp index adf75176ab..7d9419b592 100644 --- a/engines/gob/game_v2.cpp +++ b/engines/gob/game_v2.cpp @@ -70,7 +70,7 @@ void Game_v2::playTot(int16 skipPlay) {  	strcpy(savedTotName, _curTotFile);  	if (skipPlay <= 0) { -		while (!_vm->_quitRequested) { +		while (!_vm->quit()) {  			if (_vm->_inter->_variables)  				_vm->_draw->animateCursor(4); @@ -438,7 +438,7 @@ int16 Game_v2::checkCollisions(byte handleMouse, int16 deltaTime, int16 *pResId,  	timeKey = _vm->_util->getTimeKey();  	while (1) { -		if (_vm->_inter->_terminate || _vm->_quitRequested) { +		if (_vm->_inter->_terminate || _vm->quit()) {  			if (handleMouse)  				_vm->_draw->blitCursor();  			return 0; @@ -1043,7 +1043,7 @@ void Game_v2::collisionsBlock(void) {  		WRITE_VAR(16, 0);  		_activeCollResId = 0;  	} -	while ((_activeCollResId == 0) && !_vm->_inter->_terminate && !_vm->_quitRequested); +	while ((_activeCollResId == 0) && !_vm->_inter->_terminate && !_vm->quit());  	if ((_activeCollResId & 0xFFF) == collResId) {  		collStackPos = 0; @@ -1465,7 +1465,7 @@ int16 Game_v2::inputArea(int16 xPos, int16 yPos, int16 width, int16 height,  			key = checkCollisions(handleMouse, -300, collResId, collIndex);  			if ((key != 0) || (*collResId != 0) || -					_vm->_inter->_terminate || _vm->_quitRequested) +					_vm->_inter->_terminate || _vm->quit())  				break;  			if (*pTotTime > 0) { @@ -1479,7 +1479,7 @@ int16 Game_v2::inputArea(int16 xPos, int16 yPos, int16 width, int16 height,  		}  		if ((key == 0) || (*collResId != 0) || -				_vm->_inter->_terminate || _vm->_quitRequested) +				_vm->_inter->_terminate || _vm->quit())  			return 0;  		switch (key) {  | 
