diff options
author | Peter Bozsó | 2014-09-16 14:01:54 +0200 |
---|---|---|
committer | Peter Bozsó | 2014-09-16 14:01:54 +0200 |
commit | 11872dfb91a0d8ab2c76e8caa4fe212b39d53f07 (patch) | |
tree | ea639059a4e5214f7cea5f705ae7ad59c13f6198 /engines/cge | |
parent | 6f343afe8b5afbdb4690adcc95b00760dad4a52d (diff) | |
download | scummvm-rg350-11872dfb91a0d8ab2c76e8caa4fe212b39d53f07.tar.gz scummvm-rg350-11872dfb91a0d8ab2c76e8caa4fe212b39d53f07.tar.bz2 scummvm-rg350-11872dfb91a0d8ab2c76e8caa4fe212b39d53f07.zip |
CGE: Remove fallback detection.
Diffstat (limited to 'engines/cge')
-rw-r--r-- | engines/cge/detection.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/cge/detection.cpp b/engines/cge/detection.cpp index 022ff4df95..45231fecf2 100644 --- a/engines/cge/detection.cpp +++ b/engines/cge/detection.cpp @@ -48,15 +48,6 @@ namespace CGE { static const ADGameDescription gameDescriptions[] = { { - "soltys", "", - { - {"vol.cat", 0, "0c33e2c304821a2444d297fc5e2d67c6", 50176}, - {"vol.dat", 0, "f9ae2e7f8f7cac91378cdafca43faf1e", 8437572}, - AD_LISTEND - }, - Common::PL_POL, Common::kPlatformDOS, ADGF_NO_FLAGS, GUIO0() - }, - { "soltys", "Freeware", { {"vol.cat", 0, "0c33e2c304821a2444d297fc5e2d67c6", 50176}, @@ -113,11 +104,6 @@ static const ADGameDescription gameDescriptions[] = { AD_TABLE_END_MARKER }; - -static const ADFileBasedFallback fileBasedFallback[] = { - { &gameDescriptions[0], { "vol.cat", "vol.dat", 0 } }, - { 0, { 0 } } -}; } // End of namespace CGE static const ADExtraGuiOptionsMap optionsList[] = { @@ -140,10 +126,6 @@ public: _singleid = "soltys"; } - virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const { - return detectGameFilebased(allFiles, fslist, CGE::fileBasedFallback); - } - virtual const char *getName() const { return "CGE"; } |