diff options
Diffstat (limited to 'engines/sword2/animation.cpp')
| -rw-r--r-- | engines/sword2/animation.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword2/animation.cpp b/engines/sword2/animation.cpp index 48196a2f7d..76f14851e7 100644 --- a/engines/sword2/animation.cpp +++ b/engines/sword2/animation.cpp @@ -357,8 +357,8 @@ bool MoviePlayer::userInterrupt() {  		case Common::EVENT_SCREEN_CHANGED:  			handleScreenChanged();  			break; +		case Common::EVENT_RTL:  		case Common::EVENT_QUIT: -			_vm->closeGame();  			terminate = true;  			break;  		case Common::EVENT_KEYDOWN: @@ -379,7 +379,7 @@ void MoviePlayer::play(SequenceTextInfo *textList, uint32 numLines, int32 leadIn  	bool startNextText = false;  	// This happens if the user quits during the "eye" cutscene. -	if (_vm->_quit) +	if (_vm->quit())  		return;  	_numSpeechLines = numLines;  | 
