[Scummvm-git-logs] scummvm master -> 0d3367cea2537f6ef32061478308e864eb4f5b08
vyzigold
smulumas at gmail.com
Wed Nov 6 19:09:35 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:
0d3367cea2 SUPERNOVA: Fix exiting scummvm from MSN 1 intro
Commit: 0d3367cea2537f6ef32061478308e864eb4f5b08
https://github.com/scummvm/scummvm/commit/0d3367cea2537f6ef32061478308e864eb4f5b08
Author: Jaromir Wysoglad (jaromirwysoglad at gmail.com)
Date: 2019-11-06T19:04:11+01:00
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