diff options
author | Colin Snover | 2017-05-10 11:53:26 -0500 |
---|---|---|
committer | Colin Snover | 2017-05-10 11:53:26 -0500 |
commit | 200adb99cf709d8fb0eb6269ba49fd02bfe61254 (patch) | |
tree | 4cf8b8fca4e8e3ab8eb253486957be6265fec66f /engines/sci | |
parent | 67b72cc5a81b64697efc30098b3a36f2b102f3bb (diff) | |
download | scummvm-rg350-200adb99cf709d8fb0eb6269ba49fd02bfe61254.tar.gz scummvm-rg350-200adb99cf709d8fb0eb6269ba49fd02bfe61254.tar.bz2 scummvm-rg350-200adb99cf709d8fb0eb6269ba49fd02bfe61254.zip |
SCI: Add example of KQ6 game with incorrect patches directory
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/sci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index c51894807e..3b732b4855 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -161,7 +161,7 @@ SciEngine::SciEngine(OSystem *syst, const ADGameDescription *desc, SciGameId gam SearchMan.addSubDirectoryMatching(gameDataDir, "VMD Folder"); // Mac VMD files // Add the patches directory, except for KQ6CD; The patches folder in some versions of KQ6CD - // is for the demo of Phantasmagoria, included in the disk + // (e.g. KQ Collection 1997) is for the demo of Phantasmagoria, included in the disk if (_gameId != GID_KQ6) SearchMan.addSubDirectoryMatching(gameDataDir, "patches"); // resource patches } |