aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-07-03 23:37:08 +0000
committerFilippos Karapetis2009-07-03 23:37:08 +0000
commitdf9570cb3265f4d81ac41d66d949355491e2df7e (patch)
tree66e0f740882acc879c7beaecf070a6e8f6673475 /engines/sci/sci.cpp
parent9a96b20cd0c30dd8b1788637ae8b8b4bb4e5ca38 (diff)
downloadscummvm-rg350-df9570cb3265f4d81ac41d66d949355491e2df7e.tar.gz
scummvm-rg350-df9570cb3265f4d81ac41d66d949355491e2df7e.tar.bz2
scummvm-rg350-df9570cb3265f4d81ac41d66d949355491e2df7e.zip
SCI0 games using older graphics functions are automatically detected now, from the presence of the "TimesSin" and "SinMult" kernel functions. Removed the GF_SCI0_OLDGFXFUNCS game flag
svn-id: r42081
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index aa9e2415f5..4e453e7af6 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -158,7 +158,6 @@ Common::Error SciEngine::run() {
// SCI1
if (flags & GF_SCI0_OLD ||
- flags & GF_SCI0_OLDGFXFUNCS ||
flags & GF_SCI0_OLDGETTIME) {
error("This game entry is erroneous. It's marked as SCI1, but it has SCI0 flags set");
}
@@ -170,7 +169,6 @@ Common::Error SciEngine::run() {
}
if (flags & GF_SCI0_OLD ||
- flags & GF_SCI0_OLDGFXFUNCS ||
flags & GF_SCI0_OLDGETTIME) {
error("This game entry is erroneous. It's marked as SCI1.1/SCI32, but it has SCI0 flags set");
}