diff options
Diffstat (limited to 'engines/cge')
-rw-r--r-- | engines/cge/detection.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/cge/detection.cpp b/engines/cge/detection.cpp index 0df1e8711e..482591bf50 100644 --- a/engines/cge/detection.cpp +++ b/engines/cge/detection.cpp @@ -159,13 +159,14 @@ const ADGameDescription *CGEMetaEngine::fallbackDetect(const FileMap &allFiles, if (!game) return nullptr; - SearchMan.clear(); - SearchMan.addDirectory(fslist.begin()->getParent().getPath(), fslist.begin()->getParent()); + SearchMan.addDirectory("CGEMetaEngine::fallbackDetect", fslist.begin()->getParent()); ResourceManager *resman; resman = new ResourceManager(); bool result = resman->exist("CGE.SAY"); delete resman; + SearchMan.remove("CGEMetaEngine::fallbackDetect"); + if (!result) return nullptr; |