From 26e0cae8e63c565a16d23bcc7f1c023f782a8303 Mon Sep 17 00:00:00 2001 From: Shadooow Date: Mon, 14 Mar 2022 17:52:40 +0000 Subject: [PATCH] Fixed regression where PLAY_INTRO = 0 caused the game to be stuck in black screen after killing Deidranna. git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@9323 3b4a5df2-a311-0410-b5c6-a8a6f20db521 --- Intro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intro.cpp b/Intro.cpp index 4fc72fe5..60d47ed8 100644 --- a/Intro.cpp +++ b/Intro.cpp @@ -393,7 +393,7 @@ Test = 0; SetMusicMode( MUSIC_NONE ); // WANNE: No we have an INI option for the choise if the intro should be played - if (!iPlayIntro) + if (!iPlayIntro && gbIntroScreenMode != INTRO_ENDING) { PrepareToExitIntroScreen(); return( TRUE );