diff options
author | Filippos Karapetis | 2007-07-26 13:26:34 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-07-26 13:26:34 +0000 |
commit | 4785ae9cfc770746baca65ba70e014c77a24e98f (patch) | |
tree | a832869df551b69d1086b672b3063eca5fb95401 | |
parent | f5a682f5876ce04d14f10fc9960af3dce9f48bc1 (diff) | |
download | scummvm-rg350-4785ae9cfc770746baca65ba70e014c77a24e98f.tar.gz scummvm-rg350-4785ae9cfc770746baca65ba70e014c77a24e98f.tar.bz2 scummvm-rg350-4785ae9cfc770746baca65ba70e014c77a24e98f.zip |
Removed some unnecessary file existence checks
svn-id: r28214
-rw-r--r-- | engines/saga/detection.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp index 2c8089529f..7f154afbda 100644 --- a/engines/saga/detection.cpp +++ b/engines/saga/detection.cpp @@ -150,8 +150,7 @@ bool SagaEngine::initGame() { } // If a compressed sound file is found in the game's directory, set the compressed flag to true - if (Common::File::exists("music.cmp") || Common::File::exists("musicd.cmp") || - Common::File::exists("sounds.cmp") || Common::File::exists("soundsd.cmp") || + if (Common::File::exists("sounds.cmp") || Common::File::exists("soundsd.cmp") || Common::File::exists("voices.cmp") || Common::File::exists("voicesd.cmp") || Common::File::exists("inherit the earth voices.cmp")) { _gf_compressed_sounds = true; |