From a3c8840dcc867429872142deb80eb8d2181483f4 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 28 Feb 2018 22:07:00 -0500 Subject: XEEN: In progress implementing Dark Side intro --- engines/xeen/worldofxeen/worldofxeen.cpp | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'engines/xeen/worldofxeen/worldofxeen.cpp') diff --git a/engines/xeen/worldofxeen/worldofxeen.cpp b/engines/xeen/worldofxeen/worldofxeen.cpp index f0fb5b9ba2..61552eb7e5 100644 --- a/engines/xeen/worldofxeen/worldofxeen.cpp +++ b/engines/xeen/worldofxeen/worldofxeen.cpp @@ -180,19 +180,23 @@ void WorldOfXeenEngine::showStartup() { bool seenIntro = ConfMan.hasKey("seen_intro") && ConfMan.getBool("seen_intro"); // Show the title animation - bool completedTitle = (getGameID() == GType_Clouds) ? - showCloudsTitle() : showDarkSideTitle(); + bool completedTitle = true; + //(getGameID() == GType_Clouds) ? + // showCloudsTitle() : showDarkSideTitle(); _sound->stopAllAudio(); // Unless user aborted the title, go if (completedTitle && !seenIntro) { if (getGameID() == GType_Clouds) - showCloudsIntro(); + seenIntro = showCloudsIntro(); else - showDarkSideIntro(); + seenIntro = showDarkSideIntro(); - ConfMan.setBool("seen_intro", true); - ConfMan.flushToDisk(); + seenIntro = false;//****DEBUG**** + if (seenIntro) { + ConfMan.setBool("seen_intro", true); + ConfMan.flushToDisk(); + } } _gameMode = GMODE_MENU; -- cgit v1.2.3