aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/cine.cpp
diff options
context:
space:
mode:
authorKirben2015-09-13 14:23:59 +1000
committerKirben2015-09-13 14:24:55 +1000
commit8c5e6d2be49d147dd9a8e4845f24c787fc041cee (patch)
tree3296b6bb7e0ad07f8b51b1fcd6d3afd126cddb71 /engines/cine/cine.cpp
parent703d1d71425a0bd3a36db39f2c153cb1622158bb (diff)
downloadscummvm-rg350-8c5e6d2be49d147dd9a8e4845f24c787fc041cee.tar.gz
scummvm-rg350-8c5e6d2be49d147dd9a8e4845f24c787fc041cee.tar.bz2
scummvm-rg350-8c5e6d2be49d147dd9a8e4845f24c787fc041cee.zip
CINE: Add support for CD music in the CD version of Future Wars.
Diffstat (limited to 'engines/cine/cine.cpp')
-rw-r--r--engines/cine/cine.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/cine/cine.cpp b/engines/cine/cine.cpp
index a4af8f2201..5fed92051c 100644
--- a/engines/cine/cine.cpp
+++ b/engines/cine/cine.cpp
@@ -92,6 +92,9 @@ Common::Error CineEngine::run() {
// Initialize backend
initGraphics(320, 200, false);
+ if (g_cine->getGameType() == GType_FW && (g_cine->getFeatures() & GF_CD))
+ checkCD();
+
if (getPlatform() == Common::kPlatformDOS) {
g_sound = new PCSound(_mixer, this);
} else {