diff options
author | Max Horn | 2007-02-13 14:55:11 +0000 |
---|---|---|
committer | Max Horn | 2007-02-13 14:55:11 +0000 |
commit | 4968e912ce005f582a34cd0fba7395ebdfc7dc40 (patch) | |
tree | e1d2b83152b98238b69989cba3006439c122decb /engines/gob | |
parent | 08079c9dec6f59b1e8d100d90ef83581a38aecbe (diff) | |
download | scummvm-rg350-4968e912ce005f582a34cd0fba7395ebdfc7dc40.tar.gz scummvm-rg350-4968e912ce005f582a34cd0fba7395ebdfc7dc40.tar.bz2 scummvm-rg350-4968e912ce005f582a34cd0fba7395ebdfc7dc40.zip |
AdvancedDetector changes:
* Renamed genGameList to gameIDList to make it match the corresponding
plugin API function name
* removed the detectFunc param from detectGameForEngineCreation,
as it *always* pointed to a straight wrapper around AdvancedDetector::detectAllGames
* as a consequence, removed the various GAME_detectGames functions from the
engines, and removed the detectFunc param from ADVANCED_DETECTOR_DEFINE_PLUGIN
svn-id: r25547
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/detection.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/gob/detection.cpp b/engines/gob/detection.cpp index 317edea8f2..464fbea909 100644 --- a/engines/gob/detection.cpp +++ b/engines/gob/detection.cpp @@ -37,7 +37,6 @@ struct GOBGameDescription { const char *startTotBase; }; -static GameList GAME_detectGames(const FSList &fslist); } using namespace Common; @@ -918,7 +917,7 @@ static const ADParams detectionParams = { kADFlagAugmentPreferredTarget | kADFlagFilebasedFallback }; -ADVANCED_DETECTOR_DEFINE_PLUGIN(GOB, Gob::GobEngine, Gob::GAME_detectGames, detectionParams); +ADVANCED_DETECTOR_DEFINE_PLUGIN(GOB, Gob::GobEngine, detectionParams); REGISTER_PLUGIN(GOB, "Gob Engine", "Goblins Games (C) Coktel Vision"); @@ -949,8 +948,4 @@ bool GobEngine::detectGame() { return true; } -GameList GAME_detectGames(const FSList &fslist) { - return AdvancedDetector::detectAllGames(fslist, detectionParams); -} - } // End of namespace Parallaction |