WAGE: Update Engine For Changes To Advanced Detector API.
Signed-off-by: Eugene Sandulenko <sev@scummvm.org>
This commit is contained in:
parent
aabe774cbe
commit
83617a77da
1 changed files with 9 additions and 1 deletions
|
@ -66,6 +66,10 @@ static const ADGameDescription gameDescriptions[] = {
|
||||||
|
|
||||||
} // End of namespace Wage
|
} // End of namespace Wage
|
||||||
|
|
||||||
|
static const char *directoryGlobs[] = {
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static const ADParams detectionParams = {
|
static const ADParams detectionParams = {
|
||||||
// Pointer to ADGameDescription or its superset structure
|
// Pointer to ADGameDescription or its superset structure
|
||||||
(const byte *)Wage::gameDescriptions,
|
(const byte *)Wage::gameDescriptions,
|
||||||
|
@ -84,7 +88,11 @@ static const ADParams detectionParams = {
|
||||||
// Flags
|
// Flags
|
||||||
0,
|
0,
|
||||||
// Additional GUI options (for every game}
|
// 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 {
|
class WageMetaEngine : public AdvancedMetaEngine {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue