diff options
author | Jordi Vilalta Prat | 2008-05-26 18:03:55 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2008-05-26 18:03:55 +0000 |
commit | 6d6d634db180aa7cfa893b9c68d94f7f5a9787b9 (patch) | |
tree | cba1cd02ced0b8d09aeec8f8c5332fe2f0f9c4e2 | |
parent | e0051aa140da241e14a7feeb68f56d4dd6f9ee1b (diff) | |
download | scummvm-rg350-6d6d634db180aa7cfa893b9c68d94f7f5a9787b9.tar.gz scummvm-rg350-6d6d634db180aa7cfa893b9c68d94f7f5a9787b9.tar.bz2 scummvm-rg350-6d6d634db180aa7cfa893b9c68d94f7f5a9787b9.zip |
Made fallbackDetect to allow subclasses to override it
svn-id: r32295
-rw-r--r-- | common/advancedDetector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/advancedDetector.h b/common/advancedDetector.h index 2dc4b44b5f..bec03d5585 100644 --- a/common/advancedDetector.h +++ b/common/advancedDetector.h @@ -219,7 +219,7 @@ public: * @note The fslist parameter may be 0 -- in that case, it is assumed * that the callback searchs the current directory. */ - const Common::ADGameDescription *fallbackDetect(const FSList *fslist) const { + virtual const Common::ADGameDescription *fallbackDetect(const FSList *fslist) const { return 0; } }; |