Removed some unnecessary file existence checks

svn-id: r28214
This commit is contained in:
Filippos Karapetis 2007-07-26 13:26:34 +00:00
parent f5a682f587
commit 4785ae9cfc

View File

@ -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;