aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/worldofxeen/worldofxeen.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-02-28 22:07:00 -0500
committerPaul Gilbert2018-02-28 22:07:00 -0500
commita3c8840dcc867429872142deb80eb8d2181483f4 (patch)
treed537c35b35a8eec22a70e4efc2dd0424d269dcf7 /engines/xeen/worldofxeen/worldofxeen.cpp
parent29b8812af3cafd58c8e39d00427b4f30e7f2ebe1 (diff)
downloadscummvm-rg350-a3c8840dcc867429872142deb80eb8d2181483f4.tar.gz
scummvm-rg350-a3c8840dcc867429872142deb80eb8d2181483f4.tar.bz2
scummvm-rg350-a3c8840dcc867429872142deb80eb8d2181483f4.zip
XEEN: In progress implementing Dark Side intro
Diffstat (limited to 'engines/xeen/worldofxeen/worldofxeen.cpp')
-rw-r--r--engines/xeen/worldofxeen/worldofxeen.cpp16
1 files changed, 10 insertions, 6 deletions
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;