aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/worldofxeen/worldofxeen.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-02-01 20:15:09 -0500
committerPaul Gilbert2018-02-01 20:15:09 -0500
commit39b2a2f13787d254db2b227d74421a2a50eeedd3 (patch)
tree0546698d16e115f5abe620977abfe3a2d146bb43 /engines/xeen/worldofxeen/worldofxeen.cpp
parent7f53a0cd31f07cdcc9610b3c6972002e296ff0ee (diff)
downloadscummvm-rg350-39b2a2f13787d254db2b227d74421a2a50eeedd3.tar.gz
scummvm-rg350-39b2a2f13787d254db2b227d74421a2a50eeedd3.tar.bz2
scummvm-rg350-39b2a2f13787d254db2b227d74421a2a50eeedd3.zip
XEEN: Implemented remainder of World of Xeen ending
Diffstat (limited to 'engines/xeen/worldofxeen/worldofxeen.cpp')
-rw-r--r--engines/xeen/worldofxeen/worldofxeen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/xeen/worldofxeen/worldofxeen.cpp b/engines/xeen/worldofxeen/worldofxeen.cpp
index 87b4013d54..7229a4d89e 100644
--- a/engines/xeen/worldofxeen/worldofxeen.cpp
+++ b/engines/xeen/worldofxeen/worldofxeen.cpp
@@ -165,7 +165,7 @@ void WorldOfXeenEngine::death() {
w.update();
}
-void WorldOfXeenEngine::showCutscene(const Common::String &name) {
+void WorldOfXeenEngine::showCutscene(const Common::String &name, int status, uint score) {
_sound->stopAllAudio();
if (name == "ENDGAME")
@@ -173,7 +173,7 @@ void WorldOfXeenEngine::showCutscene(const Common::String &name) {
else if (name == "ENDGAME2")
showDarkSideEnding();
else if (name == "WORLDEND")
- showWorldOfXeenEnding();
+ showWorldOfXeenEnding((GooberState)status, score);
}
} // End of namespace WorldOfXeen