aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2011-02-03 02:26:57 +0000
committerMatthew Hoops2011-02-03 02:26:57 +0000
commit4c0af01d6a2a860c09dbd047563ac4f727425492 (patch)
treecb08a7b97e41471479ed87cc9f881b49fb16b2cb /engines/sci/sci.cpp
parent9e761d6f291e956a6fb1dcedcd1d7424b17d88e4 (diff)
downloadscummvm-rg350-4c0af01d6a2a860c09dbd047563ac4f727425492.tar.gz
scummvm-rg350-4c0af01d6a2a860c09dbd047563ac4f727425492.tar.bz2
scummvm-rg350-4c0af01d6a2a860c09dbd047563ac4f727425492.zip
SCI: Disable the special QFG1 Mac icon bar
The original interpreter completely ignores it in favor of the regular one. svn-id: r55748
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 2552e7bf43..dc900e0800 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -751,7 +751,7 @@ bool SciEngine::isCD() const {
}
bool SciEngine::hasMacIconBar() const {
- return _resMan->isSci11Mac() && getSciVersion() == SCI_VERSION_1_1 && getGameId() != GID_HOYLE4;
+ return _resMan->isSci11Mac() && getSciVersion() == SCI_VERSION_1_1 && getGameId() == GID_KQ6;
}
Common::String SciEngine::getSavegameName(int nr) const {