aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/detection.cpp
diff options
context:
space:
mode:
authorStrangerke2012-11-17 00:43:05 +0100
committerStrangerke2012-11-17 00:43:05 +0100
commit03468b17187c2d8d30085927491674d93ad631a8 (patch)
tree826f407ab52a4aafcbfb41e1d585ae2c0154718d /engines/hopkins/detection.cpp
parent3b878fc4c52a91034ff921cde00c868162d7e600 (diff)
downloadscummvm-rg350-03468b17187c2d8d30085927491674d93ad631a8.tar.gz
scummvm-rg350-03468b17187c2d8d30085927491674d93ad631a8.tar.bz2
scummvm-rg350-03468b17187c2d8d30085927491674d93ad631a8.zip
HOPKINS: Add voice to detection, except for the Win95 demo (to be fixed)
Diffstat (limited to 'engines/hopkins/detection.cpp')
-rw-r--r--engines/hopkins/detection.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/hopkins/detection.cpp b/engines/hopkins/detection.cpp
index 8724802552..684854bb45 100644
--- a/engines/hopkins/detection.cpp
+++ b/engines/hopkins/detection.cpp
@@ -66,9 +66,17 @@ static const PlainGameDescriptor hopkinsGames[] = {
#include "hopkins/detection_tables.h"
+const static char *directoryGlobs[] = {
+ "hopdata",
+ "voice",
+ 0
+};
+
class HopkinsMetaEngine : public AdvancedMetaEngine {
public:
HopkinsMetaEngine() : AdvancedMetaEngine(Hopkins::gameDescriptions, sizeof(Hopkins::HopkinsGameDescription), hopkinsGames) {
+ _maxScanDepth = 3;
+ _directoryGlobs = directoryGlobs;
}
virtual const char *getName() const {