SCI: Add detection for Freddy Pharkas Mac

svn-id: r55828
This commit is contained in:
Matthew Hoops 2011-02-08 15:03:23 +00:00
parent 8f3324f6ba
commit 85f8dc5dee
5 changed files with 28 additions and 14 deletions

View file

@ -756,7 +756,8 @@ bool SciEngine::isCD() const {
}
bool SciEngine::hasMacIconBar() const {
return _resMan->isSci11Mac() && getSciVersion() == SCI_VERSION_1_1 && getGameId() == GID_KQ6;
return _resMan->isSci11Mac() && getSciVersion() == SCI_VERSION_1_1 &&
(getGameId() == GID_KQ6 || getGameId() == GID_FREDDYPHARKAS);
}
Common::String SciEngine::getSavegameName(int nr) const {