[Scummvm-git-logs] scummvm branch-2-1 -> ff7bcfdede2356e3c5fa7d4f79d47155cf84934c

criezy criezy at scummvm.org
Thu Nov 7 00:06:27 CET 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ff7bcfdede SUPERNOVA: Fix exiting scummvm from MSN 1 intro


Commit: ff7bcfdede2356e3c5fa7d4f79d47155cf84934c
    https://github.com/scummvm/scummvm/commit/ff7bcfdede2356e3c5fa7d4f79d47155cf84934c
Author: Jaromir Wysoglad (jaromirwysoglad at gmail.com)
Date: 2019-11-06T23:05:56Z

Commit Message:
SUPERNOVA: Fix exiting scummvm from MSN 1 intro

Changed paths:
    engines/supernova/supernova1/rooms.cpp


diff --git a/engines/supernova/supernova1/rooms.cpp b/engines/supernova/supernova1/rooms.cpp
index a419ec9..462e0e1 100644
--- a/engines/supernova/supernova1/rooms.cpp
+++ b/engines/supernova/supernova1/rooms.cpp
@@ -130,7 +130,7 @@ void Intro::titleScreen() {
 		g_system->delayMillis(_vm->_delay);
 	}
 	_vm->playSound(kAudioVoiceYeah);
-	while (_vm->_sound->isPlaying())
+	while (_vm->_sound->isPlaying() && !_vm->shouldQuit())
 		_gm->wait(1);
 	_vm->paletteFadeOut();
 }





More information about the Scummvm-git-logs mailing list