diff options
Diffstat (limited to 'engines/touche/detection.cpp')
| -rw-r--r-- | engines/touche/detection.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index d1dde96f59..723fecec3a 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -131,11 +131,15 @@ public:  	ToucheMetaEngine() : AdvancedMetaEngine(Touche::gameDescriptions, sizeof(ADGameDescription), toucheGames) {  		_md5Bytes = 4096;  		_singleid = "touche"; -		_fileBasedFallback = Touche::fileBasedFallback;  		_flags = kADFlagPrintWarningOnFileBasedFallback;  		_maxScanDepth = 2;  		_directoryGlobs = directoryGlobs;  	} + +	virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const { +		return detectGameFilebased(allFiles, Touche::fileBasedFallback); +	} +  	virtual const char *getName() const {  		return "Touche";  	}  | 
