aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-07-04 11:24:09 +0000
committerFilippos Karapetis2009-07-04 11:24:09 +0000
commit230e7a8d2cf422d4956b089f779632de6cecf171 (patch)
tree0a5b8c61e2dbd712ac42de7b028db15269e17320 /engines/sci/sci.cpp
parentdf9570cb3265f4d81ac41d66d949355491e2df7e (diff)
downloadscummvm-rg350-230e7a8d2cf422d4956b089f779632de6cecf171.tar.gz
scummvm-rg350-230e7a8d2cf422d4956b089f779632de6cecf171.tar.bz2
scummvm-rg350-230e7a8d2cf422d4956b089f779632de6cecf171.zip
Newer DoSound() semantics are now detected automatically, by the existence of the "setVol" selector. Removed game flag GF_SCI1_NEWDOSOUND
svn-id: r42087
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 4e453e7af6..34db178706 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -150,8 +150,7 @@ Common::Error SciEngine::run() {
if (version < SCI_VERSION_1_EARLY) {
// SCI0/SCI01
if (flags & GF_SCI1_EGA ||
- flags & GF_SCI1_LOFSABSOLUTE ||
- flags & GF_SCI1_NEWDOSOUND) {
+ flags & GF_SCI1_LOFSABSOLUTE) {
error("This game entry is erroneous. It's marked as SCI0/SCI01, but it has SCI1 flags set");
}
} else if (version >= SCI_VERSION_1_EARLY && version <= SCI_VERSION_1_LATE) {
@@ -163,8 +162,7 @@ Common::Error SciEngine::run() {
}
} else if (version == SCI_VERSION_1_1 || version == SCI_VERSION_32) {
if (flags & GF_SCI1_EGA ||
- flags & GF_SCI1_LOFSABSOLUTE ||
- flags & GF_SCI1_NEWDOSOUND) {
+ flags & GF_SCI1_LOFSABSOLUTE) {
error("This game entry is erroneous. It's marked as SCI1.1/SCI32, but it has SCI1 flags set");
}