aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/saga.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2007-07-13 16:37:37 +0000
committerFilippos Karapetis2007-07-13 16:37:37 +0000
commiteedec897f83beac6f5603bd93016c284ee73b529 (patch)
tree05869e34c3e755b09c8ae962c3179a91f322ec85 /engines/saga/saga.cpp
parent52f4d0b7d93ccaa78267fd218b44ad95b3ff9505 (diff)
downloadscummvm-rg350-eedec897f83beac6f5603bd93016c284ee73b529.tar.gz
scummvm-rg350-eedec897f83beac6f5603bd93016c284ee73b529.tar.bz2
scummvm-rg350-eedec897f83beac6f5603bd93016c284ee73b529.zip
Rewrote and greatly simplified the SAGA detector, removing many duplicate and unneeded entries
- Digital music will now always be enabled for all versions if the digital music file is present. The duplicate game entries with and without this file have been removed - Changed the way compressed sound files are detected. All the duplicate compressed sound entries have been removed - The Wyrmkeep Windows CD version is now properly distinguished from the DOS CD version - Unified all the different patch file entries (apart from the Mac patch file entries, which are of a different type). If a patch file is not found, it's ignored svn-id: r28058
Diffstat (limited to 'engines/saga/saga.cpp')
-rw-r--r--engines/saga/saga.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/saga/saga.cpp b/engines/saga/saga.cpp
index 99462c5583..23eb57d1c7 100644
--- a/engines/saga/saga.cpp
+++ b/engines/saga/saga.cpp
@@ -107,7 +107,6 @@ SagaEngine::SagaEngine(OSystem *syst)
// Mac CD Wyrmkeep
Common::File::addDefaultDirectory(_gameDataPath + "patch/");
-
// Setup mixer
if (!_mixer->isReady()) {
warning("Sound initialization failed.");
@@ -150,6 +149,8 @@ int SagaEngine::init() {
_subtitlesEnabled = ConfMan.getBool("subtitles");
_readingSpeed = getTalkspeed();
_copyProtection = ConfMan.getBool("copy_protection");
+ _gf_wyrmkeep = false;
+ _gf_compressed_sounds = false;
if (_readingSpeed > 3)
_readingSpeed = 0;