diff options
| author | Max Horn | 2011-06-11 17:52:32 +0200 |
|---|---|---|
| committer | Max Horn | 2011-06-14 18:17:01 +0200 |
| commit | 7c992d6598743fce09e6666f2c9a0f550ac5e870 (patch) | |
| tree | 640b10d5e91119f6b943669f703e1fe0bbbb261a /engines/mohawk | |
| parent | e4a4aa30f743395342a4ce9cbd6bf6f3f81d6172 (diff) | |
| download | scummvm-rg350-7c992d6598743fce09e6666f2c9a0f550ac5e870.tar.gz scummvm-rg350-7c992d6598743fce09e6666f2c9a0f550ac5e870.tar.bz2 scummvm-rg350-7c992d6598743fce09e6666f2c9a0f550ac5e870.zip | |
DETECTOR: Merge ADParams into AdvancedMetaEngine
Diffstat (limited to 'engines/mohawk')
| -rw-r--r-- | engines/mohawk/detection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp index a7442729d2..e6f60e3cb5 100644 --- a/engines/mohawk/detection.cpp +++ b/engines/mohawk/detection.cpp @@ -161,10 +161,10 @@ static const char *directoryGlobs[] = { class MohawkMetaEngine : public AdvancedMetaEngine { public: MohawkMetaEngine() : AdvancedMetaEngine(Mohawk::gameDescriptions, sizeof(Mohawk::MohawkGameDescription), mohawkGames) { - params.singleid = "mohawk"; - params.fileBasedFallback = Mohawk::fileBased; - params.depth = 2; - params.directoryGlobs = directoryGlobs; + _singleid = "mohawk"; + _fileBasedFallback = Mohawk::fileBased; + _maxScanDepth = 2; + _directoryGlobs = directoryGlobs; } virtual const char *getName() const { return "Mohawk"; |
