aboutsummaryrefslogtreecommitdiff
path: root/engines/wage
diff options
context:
space:
mode:
authorD G Turner2011-05-30 04:07:14 +0100
committerEugene Sandulenko2015-12-27 15:39:52 +0100
commit83617a77da8dc486c042b19a6c496ea343a7f9af (patch)
tree4469576be4a16ddcae77f72ff6b69961e0e8bb0e /engines/wage
parentaabe774cbe962491457ec17df9545642716d8315 (diff)
downloadscummvm-rg350-83617a77da8dc486c042b19a6c496ea343a7f9af.tar.gz
scummvm-rg350-83617a77da8dc486c042b19a6c496ea343a7f9af.tar.bz2
scummvm-rg350-83617a77da8dc486c042b19a6c496ea343a7f9af.zip
WAGE: Update Engine For Changes To Advanced Detector API.
Signed-off-by: Eugene Sandulenko <sev@scummvm.org>
Diffstat (limited to 'engines/wage')
-rw-r--r--engines/wage/detection.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/engines/wage/detection.cpp b/engines/wage/detection.cpp
index 3c5ac732d8..fcdc5df890 100644
--- a/engines/wage/detection.cpp
+++ b/engines/wage/detection.cpp
@@ -66,6 +66,10 @@ static const ADGameDescription gameDescriptions[] = {
} // End of namespace Wage
+static const char *directoryGlobs[] = {
+ 0
+};
+
static const ADParams detectionParams = {
// Pointer to ADGameDescription or its superset structure
(const byte *)Wage::gameDescriptions,
@@ -84,7 +88,11 @@ static const ADParams detectionParams = {
// Flags
0,
// Additional GUI options (for every game}
- Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI
+ Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI,
+ // Maximum directory depth
+ 0,
+ // List of directory globs
+ directoryGlobs
};
class WageMetaEngine : public AdvancedMetaEngine {