diff options
author | Johannes Schickel | 2012-07-29 16:19:00 -0700 |
---|---|---|
committer | Johannes Schickel | 2012-07-29 16:19:00 -0700 |
commit | e8fd51e56b9eb4eecd09711757b2d851d5bafafc (patch) | |
tree | e8724994bced092c6b08bf338b6f3d5515a24f75 /engines/cge | |
parent | 9a0ba7124fe6faee0d4c89ca10964df18740f105 (diff) | |
parent | 18fc453b97e4b67e5e4bd6522c8b8dd05d289910 (diff) | |
download | scummvm-rg350-e8fd51e56b9eb4eecd09711757b2d851d5bafafc.tar.gz scummvm-rg350-e8fd51e56b9eb4eecd09711757b2d851d5bafafc.tar.bz2 scummvm-rg350-e8fd51e56b9eb4eecd09711757b2d851d5bafafc.zip |
Merge pull request #252 from DrMcCoy/detector_public_reportUnknown
DETECTOR: Make reportUnknown() accessible to inherited AdvancedMetaEngine classes
Diffstat (limited to 'engines/cge')
-rw-r--r-- | engines/cge/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/detection.cpp b/engines/cge/detection.cpp index d16b682501..2e04b82026 100644 --- a/engines/cge/detection.cpp +++ b/engines/cge/detection.cpp @@ -108,7 +108,7 @@ public: } virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const { - return detectGameFilebased(allFiles, CGE::fileBasedFallback); + return detectGameFilebased(allFiles, fslist, CGE::fileBasedFallback); } virtual const char *getName() const { |