diff options
author | Travis Howell | 2006-12-15 00:59:11 +0000 |
---|---|---|
committer | Travis Howell | 2006-12-15 00:59:11 +0000 |
commit | 0141cbd1dfd91c4aaeb4ed18b55e798170b17393 (patch) | |
tree | 72b5dde70f27c9723b9c778ce4b5b57af7c7d438 /engines | |
parent | 3244d20ee2aefef95f53c7198105c37176342f02 (diff) | |
download | scummvm-rg350-0141cbd1dfd91c4aaeb4ed18b55e798170b17393.tar.gz scummvm-rg350-0141cbd1dfd91c4aaeb4ed18b55e798170b17393.tar.bz2 scummvm-rg350-0141cbd1dfd91c4aaeb4ed18b55e798170b17393.zip |
GF_DEMO is only required by the PC version of Broken Sword 1 demo
svn-id: r24853
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sword1/sword1.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sword1/sword1.cpp b/engines/sword1/sword1.cpp index 34ce9594a0..32ccd85439 100644 --- a/engines/sword1/sword1.cpp +++ b/engines/sword1/sword1.cpp @@ -174,8 +174,7 @@ SystemVars SwordEngine::_systemVars; SwordEngine::SwordEngine(OSystem *syst) : Engine(syst) { - if ( 0 == scumm_stricmp(ConfMan.get("gameid").c_str(), "sword1demo") || - 0 == scumm_stricmp(ConfMan.get("gameid").c_str(), "sword1macdemo") ) + if (!scumm_stricmp(ConfMan.get("gameid").c_str(), "sword1demo")) _features = GF_DEMO; else _features = 0; |